dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | README | LICENSE

commit 00941dcff8ff0ef0f0137467a42b1d6e2cd43390 (patch)
parent 22ce73edb8ff51e994a347fc422b8da725ffa63b
Author: Alex Karle <alex@alexkarle.com>
Date:   Thu, 24 Mar 2022 23:55:37 -0400

nvim: Add default background "Normal" color

This makes it so that the background and foreground look OK
on terminals that aren't acme-yellow.

I've been experimenting with a pure-white (yes that's right)
FFFFFF terminal that has nvim open with it's yellow, and it looks
pretty good (kinda like 9term?).

Diffstat:
M.config/nvim/colors/acme.lua | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.config/nvim/colors/acme.lua b/.config/nvim/colors/acme.lua @@ -25,6 +25,7 @@ vim.cmd [[syntax off]] vim.opt.background = 'light' +vim.highlight.create('Normal', { ctermbg = 15, ctermfg = 0, cterm = "None" }) vim.highlight.create('StatusLine', { ctermbg = 14, ctermfg = 0, cterm = "None" }) vim.highlight.create('StatusLineNC', { ctermbg = 12, ctermfg = 0, cterm = "None" }) vim.highlight.create('TabLineFill', { ctermbg = 12, ctermfg = 0, cterm = "None" })