fixes for light mode

This commit is contained in:
Noah Masur
2022-11-05 13:41:09 -04:00
parent 4ea56b0aab
commit c871f59791
6 changed files with 56 additions and 44 deletions

View File

@ -20,6 +20,7 @@
base0E = "#d3869b"; # purple
base0F = "#d65d0e"; # brown
neovimConfig = ./neovim.lua;
batTheme = "gruvbox-dark";
};
light = {
base00 = "#fbf1c7"; # ----
@ -38,6 +39,7 @@
base0D = "#076678"; # blue
base0E = "#8f3f71"; # purple
base0F = "#d65d0e"; # brown
neovimConfig = ./neovim-light.lua;
neovimConfig = ./neovim.lua;
batTheme = "gruvbox-light";
};
}

View File

@ -6,7 +6,6 @@ M.packer = function(use)
config = function()
vim.g.gruvbox_italicize_strings = 0
vim.cmd("colorscheme gruvbox8")
vim.cmd("set background=dark")
end,
})
end