2024-01-09 14:30:20 +00:00
|
|
|
#+title: Emacs Config
|
|
|
|
#+author: Evie Litherland-Smith
|
|
|
|
#+email: evie@xenia.me.uk
|
|
|
|
#+filetags: :emacs:config:org:
|
2024-02-15 08:18:41 +00:00
|
|
|
Personal Emacs config.
|
2023-12-11 12:07:35 +00:00
|
|
|
|
2024-02-17 19:39:50 +00:00
|
|
|
Clone to =~/.config/emacs/= (or =~/.emacs.d/=).
|
|
|
|
|
2024-04-17 12:46:12 +01:00
|
|
|
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.
|