From d29ca8274c1c82941f26007562aa8b66c392b0ff Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Fri, 3 Oct 2025 15:39:51 +0100 Subject: Move fringe face setting --- emacs-config.org | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'emacs-config.org') 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 -- cgit