nixos/home-manager/software/emacs/emacs.d/init.el

16 lines
529 B
EmacsLisp
Raw Normal View History

2022-03-03 19:30:18 +01:00
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
(setq vc-follow-symlinks t);; always follow symlinks
;; keep customize settings in their own file
(setq custom-file "~/.emacs.d/custom.el")
(when (file-exists-p custom-file)
2022-08-12 09:21:49 +02:00
(load custom-file))
2022-03-03 19:30:18 +01:00
(require 'ob-tangle)
2022-08-12 09:21:49 +02:00
(load-file "~/.emacs.d/loader.el")