diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-23 14:04:41 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-23 14:04:41 +0200 |
commit | e79bd3273f58ba38e8fcd716090b89326791afbb (patch) | |
tree | 42ed91e9da74e452b48541476464356e74590071 /.config/nvim/lua | |
parent | e179ff09bc8655db204cbe8cdf21516788346698 (diff) |
Fix colorscheme in python for if, for, and commets
Diffstat (limited to '.config/nvim/lua')
-rw-r--r-- | .config/nvim/lua/dark/Treesitter.lua | 8 |
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 }, |