I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
618 B

  1. ;; Emacs creates a lot of files relative to `user-emacs-directory'.
  2. ;; These files are not part of this immutable configuration and do not belong in the emacs directory.
  3. ;; How can we solve this issue?
  4. ;; Shortly after initialization, before most packages load, we change the value to `dotfiles/cache'.
  5. ;; I elaborate more on the technique in my post https://chrishayward.xyz/immutable-emacs/.
  6. (setq user-emacs-directory dotfiles/cache)
  7. ;; Because this project uses version-control, we can disable more unwanted features:
  8. ;; + Lock files
  9. ;; + Backup files
  10. (setq create-lockfiles nil
  11. make-backup-files nil)