diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-25 00:34:42 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-25 00:34:42 -0400 |
commit | dd66722d52468043141a0c3432d9ebb415e9471f (patch) | |
tree | f771b5d918ad23d4e9039b1f405f032e51f70a01 /init.el | |
parent | Fix a few org keybinds (diff) | |
download | mmosmacs-dd66722d52468043141a0c3432d9ebb415e9471f.tar.gz mmosmacs-dd66722d52468043141a0c3432d9ebb415e9471f.tar.bz2 mmosmacs-dd66722d52468043141a0c3432d9ebb415e9471f.zip |
Dim the color of `hl-line`
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 | ;; --------------------------------- |