aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-25 00:34:42 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-25 00:34:42 -0400
commitdd66722d52468043141a0c3432d9ebb415e9471f (patch)
treef771b5d918ad23d4e9039b1f405f032e51f70a01
parentFix a few org keybinds (diff)
downloadmmosmacs-dd66722d52468043141a0c3432d9ebb415e9471f.tar.gz
mmosmacs-dd66722d52468043141a0c3432d9ebb415e9471f.tar.bz2
mmosmacs-dd66722d52468043141a0c3432d9ebb415e9471f.zip
Dim the color of `hl-line`
-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;; ---------------------------------