From 92d0d9dc1cb61f3ae60320ddb01d243af5bc572d Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 28 Sep 2023 16:27:11 +0100 Subject: (Emacs)~no-littering is setup in init.el This solves the bug with custom.el where it randomly resets and forgets what I setup there already. Found this out through the custom.el info, where setting a custom file yourself requires loading it in post. --- Emacs/.config/emacs/config.org | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'Emacs/.config/emacs/config.org') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 34b7efb..b16c13b 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -32,16 +32,6 @@ Set the encoding to UTF-8-Unix by default. (setq-default buffer-file-coding-system 'utf-8-unix save-buffer-coding-system 'utf-8-unix)) #+end_src - -Setup no-littering, which cleans up many of the default directories in -Emacs. -#+begin_src emacs-lisp -(use-package no-littering - :demand t - :init - (setq no-littering-etc-directory (expand-file-name ".config/" user-emacs-directory) - no-littering-var-directory (expand-file-name ".local/" user-emacs-directory))) -#+end_src ** File saves and custom file Setup automatic saving for files (in case of system failure) and auto-revert-mode (which refreshes the buffer on changes to the @@ -54,7 +44,6 @@ temporary customisation) in the etc folder. (setq backup-directory-alist `(("." . ,(no-littering-expand-var-file-name "saves/"))) global-auto-revert-non-file-buffers t auto-revert-verbose nil) - (setq custom-file (no-littering-expand-etc-file-name "custom.el")) :config (global-auto-revert-mode 1)) #+end_src -- cgit v1.2.3-13-gbd6f