From 06301e52942c915d5ad5e66a3ba3d6704bdb6908 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sat, 12 Nov 2022 13:03:29 +0000 Subject: [PATCH] feat: disable creation of lock files These files include the character '#' in their filename and clutter directories. They also send false alarms to git - better get rid of them. --- lisp/editor.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/editor.el b/lisp/editor.el index 7b44d2b..8236478 100644 --- a/lisp/editor.el +++ b/lisp/editor.el @@ -33,6 +33,9 @@ ;; Disable the creation of files ending with '~' (backup files) (setq make-backup-files nil) +;; Disable the creation of files with '#' (lock files) +(setq create-lockfiles nil) + ;;; Themes ;; Customize doom-themes (setq doom-themes-enable-bold t