diff options
-rw-r--r-- | init-el.org | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/init-el.org b/init-el.org index 8d93180..2e67c20 100644 --- a/init-el.org +++ b/init-el.org @@ -19,12 +19,18 @@ See the end of this file for the elisp block that tangles out to init.el. Here is a preamble that ends up at the top of init.el + This preamble sets a few variables that control how Emacs behaves + more generally. + #+name: preamble #+begin_src elisp :noweb no-export (setq custom-file (concat user-emacs-directory "../notes/custom.el")) (load custom-file 'noerror) +(setq backup-directory-alist '(("." . "~/.emacs.d/backups"))) +(setq backup-by-copying t) + (setq warning-minimum-level :emergency) ;;; utilities @@ -36,7 +42,6 @@ #+end_src - ** Native Compilation |