summaryrefslogtreecommitdiff
path: root/home/neovim/init.lua
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/init.lua
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 '')
-rw-r--r--home/neovim/init.lua3
1 files changed, 0 insertions, 3 deletions
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 })