emacs/README.org

20 lines
474 B
Org Mode
Raw Normal View History

2024-01-09 14:30:20 +00:00
#+title: Emacs Config
#+author: Evie Litherland-Smith
#+email: evie@xenia.me.uk
#+filetags: :emacs:config:org:
Personal Emacs config.
Clone to =~/.config/emacs/= (or =~/.emacs.d/=).
To install packages on non-NixOS systems:
#+begin_src emacs-lisp
(setq prog-mode-hook nil
lisp-data-mode-hook nil)
(package-install-selected-packages)
;; Optionally autoremove unneeded packages:
(package-autoremove)
#+end_src
Or just run ~install.el~ for the same effect.