.emacs.d/pkg/hl-line.el

7 lines
207 B
EmacsLisp
Raw Permalink Normal View History

;; Highlight the current line.
;; https://www.emacswiki.org/emacs/HighlightCurrentLine
(use-package hl-line
:config
(add-hook 'prog-mode-hook #'hl-line-mode)
(add-hook 'text-mode-hook #'hl-line-mode))