summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/dark
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-23 14:04:41 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-23 14:04:41 +0200
commite79bd3273f58ba38e8fcd716090b89326791afbb (patch)
tree42ed91e9da74e452b48541476464356e74590071 /.config/nvim/lua/dark
parente179ff09bc8655db204cbe8cdf21516788346698 (diff)
Fix colorscheme in python for if, for, and commets
Diffstat (limited to '.config/nvim/lua/dark')
-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 },