diff --git a/emacs/init.org b/emacs/init.org index 75c0b48..f93081a 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -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