diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 20:32:20 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 20:32:20 +0100 |
commit | 3b33e963951c5fa5dcd8b725cf7d4f630b06e279 (patch) | |
tree | 3d76fc1915533dde7200a041e1c9555ad701e1ba | |
parent | 724f055d8e9c4bb1f9e1a393e646f69d1db7ed7b (diff) |
feat(treesitter): white funs blue kw
-rw-r--r-- | lua/no-clown-fiesta/Treesitter.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/no-clown-fiesta/Treesitter.lua b/lua/no-clown-fiesta/Treesitter.lua index e530350..99de273 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.medium_gray }, - TSKeywordFunction = { fg = C.cyan }, + TSKeyword = { fg = C.blue }, + TSKeywordFunction = { fg = C.gray_blue }, TSLabel = { fg = C.white }, TSNamespace = { fg = C.white }, TSRepeat = { fg = C.red }, @@ -21,10 +21,10 @@ local Treesitter = { TSCharacter = { fg = C.light_green }, TSError = { fg = C.error_red }, TSFunction = { fg = C.gray_blue }, - TSFuncBuiltin = { fg = C.gray_blue }, - TSMethod = { fg = C.gray_blue }, - TSConstMacro = { fg = C.gray_blue }, - TSFuncMacro = { fg = C.gray_blue }, + TSFuncBuiltin = { fg = C.white }, + TSMethod = { fg = C.white }, + TSConstMacro = { fg = C.white }, + TSFuncMacro = { fg = C.white }, TSVariable = { fg = C.white }, TSVariableBuiltin = { fg = C.white }, TSProperty = { fg = C.white }, |