blob: 0da25d6f0719180beaf37498d5b880eb4cf724fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#+TITLE: edit-config
This package aims at providing a convenient way of editing the various
configuration files you have on your system.
* Usage
Customize the variable =edit-config-files=, it should the contain all the files
you want to be able to jump to. Then, invoke =M-x edit-config=.
* Installation
** My Package Archive
I have my own package archive that you may use.
#+begin_src emacs-lisp
(add-to-list 'package-archives '("tr" . "https://tristanriehs.fr/elisp-packages/"))
#+end_src
** Manual
Get the sources at https://tristanriehs.fr/git/edit-config, and load =edit-config.el=.
#+begin_src emacs-lisp
(load "/path/to/edit-config.el")
#+end_src
** [[https://github.com/radian-software/straight.el][Straight]]
#+begin_src emacs-lisp
(straight-use-package 'edit-config
:repo "https://tristanriehs.fr/git/edit-config")
#+end_src
|