Load custom.el last

This commit is contained in:
Jeremy Dormitzer 2019-12-27 10:46:32 -05:00
parent 64d4fbd29b
commit c8ca9f753c

View File

@ -606,13 +606,6 @@ Whenever the buffer changes, look up the major-mode to see if there is any code
(setq warning-suppress-types
'((undo discard-info)))
#+END_SRC
* Customization File
I don't want anything to write to my init.el, so save customizations in a separate file:
#+BEGIN_SRC emacs-lisp
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
(load custom-file t)
#+END_SRC
* Dropbox
I put lots of stuff in Dropbox, but the actual folder location differs on my different computers. This function resolves to the Dropbox directory:
#+BEGIN_SRC emacs-lisp
@ -4010,3 +4003,9 @@ A better terminal emulator for Emacs. Replaces ansi-term, not EShell.
(leader-def-key "sv" 'open-vterm)
#+END_SRC
* Customization File
I don't want anything to write to my init.el, so save customizations in a separate file:
#+BEGIN_SRC emacs-lisp
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
(load custom-file t)
#+END_SRC