diff options
author | mattkae <mattkae@protonmail.com> | 2022-11-16 22:12:37 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2022-11-16 22:12:37 -0500 |
commit | f953b5c010cea5167e3c945edd498e0404ded92d (patch) | |
tree | 59e4e5230bfbf6c5f609304918bb72d68970c256 /lisp | |
parent | 887743979578cec55469988261cb68beebaa7ce0 (diff) |
Box around selected line and no background color
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/general.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/general.el b/lisp/general.el index 1794130..106e2c5 100644 --- a/lisp/general.el +++ b/lisp/general.el @@ -109,6 +109,11 @@ ;; Line highlighting (global-hl-line-mode 1) +(set-face-background 'hl-line "unspecified") +(set-face-attribute 'hl-line nil + :box '(:line-width -1 + :color "gray35" + :style nil)) ;; Git |