From dd66722d52468043141a0c3432d9ebb415e9471f Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Thu, 25 May 2023 00:34:42 -0400 Subject: Dim the color of `hl-line` --- init.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'init.el') diff --git a/init.el b/init.el index 6461698..8451190 100644 --- a/init.el +++ b/init.el @@ -312,7 +312,10 @@ ;; --------------------------------- ;; Highlight current line -(when window-system (add-hook 'prog-mode-hook 'hl-line-mode)) +(use-package hl-line + :straight (:type built-in) + :config (set-face-attribute 'hl-line nil :background "#111") + :hook (prog-mode . hl-line-mode)) ;; --------------------------------- -- cgit v1.2.3