aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/init.el b/init.el
index 6461698..8451190 100644
--- a/init.el
+++ b/init.el
@@ -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;; ---------------------------------