This commit is contained in:
Martin Sukany
2026-02-08 00:00:09 +01:00
parent 3423b08606
commit 4127a2a9a6

View File

@@ -325,3 +325,12 @@ Funguje v libovolném textu, včetně Markdown linků (např. [x](./...))."
;; performance ;; performance
(setq which-key-idle-delay 0) (setq which-key-idle-delay 0)
;; auto save
(setq auto-save-default nil) ;; zruší #file# bordel
(defun my/save-all-buffers ()
(save-some-buffers t))
(run-with-idle-timer 5 t #'my/save-all-buffers)