fix: disabled lock/autosave files appearing anyway
This commit is contained in:
parent
d25aa4f0a7
commit
032c2fadc2
|
@ -34,7 +34,6 @@
|
|||
(setq make-backup-files nil)
|
||||
|
||||
;; Move files with '#' to system tmp directory
|
||||
(setq auto-save-default nil)
|
||||
(setq create-lockfiles nil)
|
||||
(setq backup-directory-alist
|
||||
`((".*" . ,temporary-file-directory)))
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
;; Remove the startup screen
|
||||
(setq inhibit-startup-message t)
|
||||
|
||||
;; Disable the GTK dialog that appears when exiting without saving
|
||||
(setq use-dialog-box nil)
|
||||
|
||||
;; Enable line numbers globally
|
||||
(global-display-line-numbers-mode 1)
|
||||
|
||||
|
|
Reference in a new issue