Updates to emacs config to fix file syncing issues

This commit is contained in:
Random936
2024-12-08 19:19:33 -08:00
parent d23b2454d4
commit cc9c369ef2
4 changed files with 15 additions and 1 deletions

View File

@@ -28,6 +28,16 @@ Disables the dialog prompting box and instead prompts the user in the minibuffer
(setq use-dialog-box nil)
#+end_src
** Global Auto Revert
Enabling global auto revert in Emacs so that changes across a shared file system are synced with emacs buffers.
#+begin_src emacs-lisp
(global-auto-revert-mode 1)
(setq auto-revert-use-notify nil)
(setq auto-revert-verbose 1)
#+end_src
** Relocate Custom File
Change location of custom file. This will stop *custom* from appending to the config file.