From d1d8795a494a41c4a8f73676cc36cf01285d1c4d Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 26 Mar 2021 19:38:15 -0700 Subject: 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. --- emacs/custom/fcuny-ui.el | 6 +++--- 1 file 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) -- cgit 1.4.1