Moved tidy section into its own org file.

This commit is contained in:
Micheal Smith
2025-10-29 19:50:32 -05:00
parent 28dc7d9039
commit 1679ca1e19
2 changed files with 18 additions and 16 deletions

View File

@@ -198,22 +198,7 @@ features.
#+INCLUDE: "config/gc.org" :minlevel 1
* Keeping things tidy
I'd like to keep all of my configuration, and emacs files in one place. I've found
the [[https://github.com/emacscollective/no-littering][no-littering]] package does this well. This keeps everything under the .emacs.d
directory rather than littering $HOME.
#+begin_src emacs-lisp
(use-package no-littering
:ensure t
:config
(no-littering-theme-backups)
(let ((dir (no-littering-expand-var-file-name "lock-files/")))
(make-directory dir t)
(setq lock-file-name-transforms `((".*" ,dir t))))
(setq custom-file (expand-file-name "custom.el" user-emacs-directory)))
#+end_src
#+INCLUDE: "config/tidy.org" :minlevel 1
* Auth sources

17
config/tidy.org Normal file
View File

@@ -0,0 +1,17 @@
* Keeping things tidy
I'd like to keep all of my configuration, and emacs files in one place. I've found
the [[https://github.com/emacscollective/no-littering][no-littering]] package does this well. This keeps everything under the .emacs.d
directory rather than littering $HOME.
#+begin_src emacs-lisp
(use-package no-littering
:ensure t
:config
(no-littering-theme-backups)
(let ((dir (no-littering-expand-var-file-name "lock-files/")))
(make-directory dir t)
(setq lock-file-name-transforms `((".*" ,dir t))))
(setq custom-file (expand-file-name "custom.el" user-emacs-directory)))
#+end_src