diff options
author | Franck Cuny <franck@fcuny.net> | 2021-03-26 19:38:15 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-03-26 19:38:15 -0700 |
commit | d1d8795a494a41c4a8f73676cc36cf01285d1c4d (patch) | |
tree | e4be52d0a684ce387250f402fa75c9f0c0bf0040 | |
parent | alacritty: remove commented sections (diff) | |
download | emacs.d-d1d8795a494a41c4a8f73676cc36cf01285d1c4d.tar.gz |
emacs: fix configuration for hl-line
I need the highlighted line to be intense, with high contrast (other I'm unable to find it the buffers). I accidently selected 'underline-only-accented' instead of 'intense-background'. This change restore the proper value.
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index f6436b0..b325b17 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -27,13 +27,13 @@ (modus-themes-slanted-constructs t) (modus-themes-mode-line '3d) (modus-themes-syntax 'faint-yellow-comments) - ;; make the hl line more intense in contrats + ;; make the hl line more intense in contrast (modus-themes-intense-hl-line t) - (modus-themes-hl-line 'underline-only-accented) + (modus-themes-hl-line 'intense-background) (modus-themes-paren-match 'intense-bold) (modus-themes-links 'neutral-underline) (modus-themes-prompts 'subtle) - (modus-themes-completions nil) + (modus-themes-completions 'moderate) (modus-themes-region 'bg-only-no-extend) (modus-themes-diffs 'bg-only) (modus-themes-org-blocks 'nil) |