diff options
| author | LLoyderino <adrijan.bjedov@gmail.com> | 2025-06-01 20:03:05 +0200 |
|---|---|---|
| committer | LLoyderino <adrijan.bjedov@gmail.com> | 2025-06-01 20:03:05 +0200 |
| commit | 9a26190373ee18312a8d74582713ee54c0299029 (patch) | |
| tree | c9e5179c6ad1738f2483ba13cab3033d63e8e3e2 | |
| parent | 61fce1c5b14e61569a6422faed392338e07eba02 (diff) | |
Automatically update buffers when files and directories are updated externally
| -rw-r--r-- | init.el | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -21,7 +21,10 @@ ;; Better defaults (use-package better-defaults) -(setq read-process-output-max (* 1024 1024 4)) +(setq read-process-output-max (* 1024 1024 4)) ; Increase garbage collection threshold + +(global-auto-revert-mode 1) ; Update files changed externally +(setq global-auto-revert-non-file-buffers t) ; Update dired when directory changes ;; Catppuccin theme (load "~/.emacs.d/theme.el") |
