aboutsummaryrefslogtreecommitdiff
path: root/README.org
blob: 15e8fe7bb7e6d6e45b84892102195d3058bd2247 (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.git")
#+end_src