From 765fa07e40bbe1e99f772a483d070d1ffa29bf79 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 14 May 2024 17:02:09 +0100 Subject: [PATCH] base16 theme disable distinct fringe background org-verbatim face inherit from org-code instead of shadow --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 1748bb6..ff96904 100644 --- a/init.el +++ b/init.el @@ -440,7 +440,7 @@ (use-package base16-theme :demand :custom - (base16-theme-distinct-fringe-background t) + (base16-theme-distinct-fringe-background nil) (base16-theme-highlight-mode-line 'contrast) :config (load-theme 'base16-catppuccin-mocha t)) @@ -621,6 +621,7 @@ (set-face-attribute 'org-block nil :inherit 'fixed-pitch) (set-face-attribute 'org-code nil :inherit 'fixed-pitch) (set-face-attribute 'org-table nil :inherit 'fixed-pitch) + (set-face-attribute 'org-verbatim nil :inherit 'org-code) ;; Let quote and verse blocks use variable-pitch font, if configured (set-face-attribute 'org-quote nil :inherit 'variable-pitch) (set-face-attribute 'org-verse nil :inherit 'variable-pitch))