base16 theme disable distinct fringe background

org-verbatim face inherit from org-code instead of shadow
This commit is contained in:
Evie Litherland-Smith 2024-05-14 17:02:09 +01:00
parent d3454e08c1
commit 765fa07e40

View file

@ -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))