emacs - some indentation refactoring

This commit is contained in:
madmaurice 2017-10-18 22:57:42 +02:00
parent 992fcc1849
commit 0e8c58fa49

View file

@ -63,13 +63,12 @@
;; Enable backup
(setq make-backup-files t)
(setq
version-control t
backup-by-copying t
backup-directory-alist '(("." . "~/.saves"))
delete-old-versions t
kept-new-versions 6
kept-old-versions 2)
(setq version-control t
backup-by-copying t
backup-directory-alist '(("." . "~/.saves"))
delete-old-versions t
kept-new-versions 6
kept-old-versions 2)
(setq-default grep-command
(concat
@ -79,10 +78,9 @@
"--exclude-dir=.git "))
;; Scroll behaviour
(setq
scroll-step 1
scroll-margin 5
scroll-conservatively 9999)
(setq scroll-step 1
scroll-margin 5
scroll-conservatively 9999)
;; Auto-fill in text
(add-hook 'text-mode-hook 'turn-on-auto-fill)