diff options
| author | 2023-02-24 23:40:43 -0800 | |
|---|---|---|
| committer | 2023-02-24 23:40:43 -0800 | |
| commit | ba9427329ac49fa2e060da2c16507feed62ad890 (patch) | |
| tree | ebd7b60dfc87c7ccfddc482cef3fab6e532661e9 | |
| parent | 59cf53110ed73344c7f96da8136b88b039b69602 (diff) | |
| download | yoshi-theme-ba9427329ac49fa2e060da2c16507feed62ad890.tar.gz yoshi-theme-ba9427329ac49fa2e060da2c16507feed62ad890.zip | |
fix: Make the black color in vterm stand out from the background
The black color is used, for one, for predictive completion in zsh and fish. For
some reason, without this change, the color doesn't show up at all in ‘vterm’,
even though it works fine in ‘term’.
| -rw-r--r-- | yoshi-theme.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yoshi-theme.el b/yoshi-theme.el index c1ebeb4..6f955af 100644 --- a/yoshi-theme.el +++ b/yoshi-theme.el @@ -564,6 +564,9 @@ `(rpm-spec-ghost-face ((t (:foreground ,fgred)))) `(rpm-spec-section-face ((t (:foreground ,fgyellow :underline t)))) + ;; vterm + `(vterm-color-black ((t (:background ,yoshi-2 :inherit term-color-black)))) + ;; Window dividers `(window-divider ((t (:foreground ,yoshi-2)))) `(window-divider-first-pixel ((t (:foreground unspecified :inherit window-divider)))) |
