diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -312,7 +312,10 @@ | |||
312 | ;; --------------------------------- | 312 | ;; --------------------------------- |
313 | 313 | ||
314 | ;; Highlight current line | 314 | ;; Highlight current line |
315 | (when window-system (add-hook 'prog-mode-hook 'hl-line-mode)) | 315 | (use-package hl-line |
316 | :straight (:type built-in) | ||
317 | :config (set-face-attribute 'hl-line nil :background "#111") | ||
318 | :hook (prog-mode . hl-line-mode)) | ||
316 | 319 | ||
317 | 320 | ||
318 | ;; --------------------------------- | 321 | ;; --------------------------------- |