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.
This commit is contained in:
parent
a6c94ec2b1
commit
06301e5294
|
@ -33,6 +33,9 @@
|
||||||
;; Disable the creation of files ending with '~' (backup files)
|
;; Disable the creation of files ending with '~' (backup files)
|
||||||
(setq make-backup-files nil)
|
(setq make-backup-files nil)
|
||||||
|
|
||||||
|
;; Disable the creation of files with '#' (lock files)
|
||||||
|
(setq create-lockfiles nil)
|
||||||
|
|
||||||
;;; Themes
|
;;; Themes
|
||||||
;; Customize doom-themes
|
;; Customize doom-themes
|
||||||
(setq doom-themes-enable-bold t
|
(setq doom-themes-enable-bold t
|
||||||
|
|
Reference in a new issue