diff options
| author | Thomas Schneider <qsx@qsx.re> | 2017-08-08 13:15:18 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@qsx.re> | 2017-08-08 13:15:18 +0200 |
| commit | ebe2122fb7814f62e42e5356aa264eecb6bf8ec2 (patch) | |
| tree | a9e50512b2a95c5d844687a07e90a5ec07940d07 /dot.emacs.d | |
| parent | 82145257ff268101d5cbf3740fbbed2a65a83e8f (diff) | |
Emacs: Call (linum-mode) in (use-package)
Signed-off-by: Thomas Schneider <qsx@qsx.re>
Diffstat (limited to 'dot.emacs.d')
| -rw-r--r-- | dot.emacs.d/init.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index ec3098d..d45d2a8 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -44,9 +44,10 @@ :mode ("\\.yml\\'" . yaml-mode)) (use-package linum-relative - :ensure t) -(linum-mode) -(linum-relative-global-mode) + :ensure t + :config + (linum-mode) + (linum-relative-global-mode)) (add-to-list 'auto-mode-alist '("/mutt" . mail-mode)) (add-hook 'mail-mode-hook 'turn-on-auto-fill) |
