fix: disabled lock/autosave files appearing anyway

This commit is contained in:
Muhammad Nauman Raza 2022-11-12 20:25:58 +00:00
parent d25aa4f0a7
commit 032c2fadc2
No known key found for this signature in database
GPG key ID: A9A36C429C9CAE31
2 changed files with 3 additions and 1 deletions

View file

@ -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)))

View file

@ -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)