diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 20:06:56 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 20:06:56 +0100 |
commit | 8e17fcee61282cd70e26d19a3e77b7db06667dac (patch) | |
tree | a19dd82603d041df66c788115dbc74b2525cf4a0 /lua/no-clown-fiesta/Treesitter.lua | |
parent | bc44d4647390245d69b65d481dc777e378a93c49 (diff) |
feat(treesitter): update colors for kw
Diffstat (limited to 'lua/no-clown-fiesta/Treesitter.lua')
-rw-r--r-- | lua/no-clown-fiesta/Treesitter.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/Treesitter.lua b/lua/no-clown-fiesta/Treesitter.lua index 91cbbba..a841ecb 100644 --- a/lua/no-clown-fiesta/Treesitter.lua +++ b/lua/no-clown-fiesta/Treesitter.lua @@ -8,8 +8,8 @@ local Treesitter = { TSConditional = { fg = C.red }, TSException = { fg = C.red }, TSInclude = { fg = C.gray_blue }, - TSKeyword = { fg = C.red }, - TSKeywordFunction = { fg = C.red }, + TSKeyword = { fg = C.gray }, + TSKeywordFunction = { fg = C.blue }, TSLabel = { fg = C.white }, TSNamespace = { fg = C.white }, TSRepeat = { fg = C.red }, @@ -38,7 +38,7 @@ local Treesitter = { TSTagDelimiter = { fg = C.white }, TSPunctBracket = { fg = C.white }, TSPunctSpecial = { fg = C.medium_gray }, - TSString = { fg = C.light_gray }, + TSString = { fg = C.medium_gray }, TSStringRegex = { fg = C.medium_gray }, TSStringEscape = { fg = C.medium_gray }, TSTag = { fg = C.pale_purple }, |