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