Disable global linum mode, add it as a prog mode hook instead

This commit is contained in:
Ivan Malison 2016-06-28 17:13:35 -07:00
parent 0f0aca8403
commit 41fb15979a

View File

@ -173,7 +173,11 @@ Ensure by default since most of the package for which I use use-package need to
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(line-number-mode t) (line-number-mode t)
(column-number-mode t) (column-number-mode t)
(global-linum-mode t) #+END_SRC
Linum can be really slow so do not have it on by default. Its probably safe to turn it on when in a programming mode
#+BEGIN_SRC emacs-lisp
(global-linum-mode -1)
(add-hook 'prog-mode-hook (lambda () (linum-mode t)))
#+END_SRC #+END_SRC
** Backups ** Backups
*** Put them all in one directory *** Put them all in one directory