diff options
author | colin <colin@cicadas.surf> | 2023-11-25 07:47:39 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-11-25 07:47:39 -0800 |
commit | db9b9ae5588cd7cf53cb61b5bb155f6b59930912 (patch) | |
tree | b6c0e02f0ccacb4b4318a091cf4bac36a02fc994 | |
parent | 059f687d7d945d6cb3edae28a1b40ddbcef1c9ba (diff) |
backups relocation
-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 |