diff options
Diffstat (limited to '')
-rw-r--r-- | home/neovim/config.nix | 2 | ||||
-rw-r--r-- | home/neovim/init.lua | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/home/neovim/config.nix b/home/neovim/config.nix index 98895ed..b775e77 100644 --- a/home/neovim/config.nix +++ b/home/neovim/config.nix @@ -89,7 +89,7 @@ in base00 = "#${config.theme.colors.base}"; base01 = "#${config.theme.colors.surface}"; base02 = "#${config.theme.colors.surface}"; - base03 = "#${config.theme.colors.overlay}"; + base03 = "#${config.theme.colors.subtext}"; base04 = "#${config.theme.colors.subtext}"; base05 = "#${config.theme.colors.text}"; base06 = "#${config.theme.colors.text}"; diff --git a/home/neovim/init.lua b/home/neovim/init.lua index 7ff402a..7bfbae4 100644 --- a/home/neovim/init.lua +++ b/home/neovim/init.lua @@ -106,9 +106,6 @@ vim.api.nvim_set_hl(0, "Identifier", { fg = config.theme.colors.base05 }) vim.api.nvim_set_hl(0, "TSVariable", { fg = config.theme.colors.base05 }) -- macro should be colored as a keyword vim.api.nvim_set_hl(0, "TSFuncMacro", { fg = config.theme.colors.base0E }) --- comments are too dark -vim.api.nvim_set_hl(0, "Comment", { fg = config.theme.colors.base07 }) -vim.api.nvim_set_hl(0, "@comment", { link = "Comment" }) -- warnings should be yellow vim.api.nvim_set_hl(0, "DiagnosticWarn", { fg = config.theme.colors.base0A }) |