summaryrefslogtreecommitdiff
path: root/home/neovim
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-07-02 10:57:15 -0400
committerFreya Murphy <freya@freyacat.org>2025-07-02 10:57:15 -0400
commit4ce44871ef4b8da96461b03c749a142d5264a5ee (patch)
tree9030776fa7c274bb07b0db12455fc26d6659a0d1 /home/neovim
parentupdate ly version and update config (diff)
downloaddotfiles-nix-4ce44871ef4b8da96461b03c749a142d5264a5ee.tar.gz
dotfiles-nix-4ce44871ef4b8da96461b03c749a142d5264a5ee.tar.bz2
dotfiles-nix-4ce44871ef4b8da96461b03c749a142d5264a5ee.zip
update zsh autocomplete/nvim comment color
Diffstat (limited to 'home/neovim')
-rw-r--r--home/neovim/config.nix2
-rw-r--r--home/neovim/init.lua3
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 })