diff options
| -rw-r--r-- | emacs-config.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emacs-config.org b/emacs-config.org index 7b98a2d..cd14eb2 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -125,15 +125,15 @@ Enable pairing brackets and add additional bracket pairs. Enable theme. #+begin_src elisp (load-theme 'modus-vivendi) + (set-face-attribute 'fringe nil :background "unspecified-bg") #+end_src Fix fringe background colour. #+begin_src elisp - (set-face-attribute 'fringe nil :background "unspecified-bg") - (advice-add 'modus-themes-toggle - :after (lambda () "Hide fringe background on theme toggle." - (set-face-attribute 'fringe nil - :background "unspecified-bg"))) + (add-hook 'modus-themes-after-load-theme-hook + (lambda () "Hide fringe background on theme toggle." + (set-face-attribute 'fringe nil + :background "unspecified-bg"))) #+end_src ** Font |
