From 00941dcff8ff0ef0f0137467a42b1d6e2cd43390 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Thu, 24 Mar 2022 23:55:37 -0400 Subject: [PATCH] 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?). --- .config/nvim/colors/acme.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/colors/acme.lua b/.config/nvim/colors/acme.lua index 49095ec..d1c4da2 100644 --- 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" }) -- libgit2 1.1.1