#+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