From bcd0923f42a2260475f53b0df8783cd4095733ac Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Wed, 1 Oct 2025 17:41:49 +0100 Subject: Ensure fringe background is hidden on theme toggle --- emacs-config.org | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'emacs-config.org') diff --git a/emacs-config.org b/emacs-config.org index d4e3212..168f263 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -149,6 +149,14 @@ Enable theme. (load-theme 'modus-vivendi) #+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"))) +#+end_src ** Font Font settings. -- cgit