diff options
Diffstat (limited to 'emacs-config.org')
| -rw-r--r-- | emacs-config.org | 8 |
1 files changed, 8 insertions, 0 deletions
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. |
