aboutsummaryrefslogtreecommitdiff
path: root/emacs-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-init.el')
-rw-r--r--emacs-init.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/emacs-init.el b/emacs-init.el
index fe4dab87..2f4d1140 100644
--- a/emacs-init.el
+++ b/emacs-init.el
@@ -134,8 +134,11 @@
:after (evil)
:bind (("<leader>tR" . rainbow-mode)))
-(use-package linum
- :hook prog-mode)
+(use-package display-line-numbers
+ ;; Included in Emacs >= 26. Better than `linum-mode'.
+ ;; There is also `global-display-line-numbers-mode', but that also
+ ;; enables line numbers in help windows, which I don't want.
+ :hook (prog-mode conf-mode))
(use-package which-key
:commands (which-key-mode) :demand t