summaryrefslogtreecommitdiff
path: root/.config/nvim
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/lua/dark/Treesitter.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/lua/dark/Treesitter.lua b/.config/nvim/lua/dark/Treesitter.lua
index 91651e8..e644b8b 100644
--- a/.config/nvim/lua/dark/Treesitter.lua
+++ b/.config/nvim/lua/dark/Treesitter.lua
@@ -1,18 +1,18 @@
local Treesitter = {
- TSComment = { fg = C.blue },
+ TSComment = { fg = C.gray },
TSAnnotation = { fg = C.purple },
TSAttribute = { fg = C.white },
TSConstructor = { fg = C.orange },
TSType = { fg = C.orange },
TSTypeBuiltin = { fg = C.orange },
- TSConditional = { fg = C.orange },
- TSException = { fg = C.orange },
+ TSConditional = { fg = C.red },
+ TSException = { fg = C.red },
TSInclude = { fg = C.red },
TSKeyword = { fg = C.red },
TSKeywordFunction = { fg = C.red },
TSLabel = { fg = C.orange },
TSNamespace = { fg = C.orange },
- TSRepeat = { fg = C.orange },
+ TSRepeat = { fg = C.red },
TSConstant = { fg = C.orange },
TSConstBuiltin = { fg = C.orange },
TSFloat = { fg = C.blue },