summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/Treesitter.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-09 01:38:05 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-09 01:38:05 +0200
commit17ed717c0f24d2cf4c73a7b29bb84de5ca467375 (patch)
tree94c700ff0cc08edc0f50fefcfdad422a676bec6d /lua/no-clown-fiesta/Treesitter.lua
parent99a9c0dcfef8d1a72223a55105931f5a55af614f (diff)
parent699aa9cd153dd14c00405fa26a7b9d93aed6dbe2 (diff)
Merge branch 'master' of github.com:aktersnurra/no-clown-fiesta.nvim
Diffstat (limited to 'lua/no-clown-fiesta/Treesitter.lua')
-rw-r--r--lua/no-clown-fiesta/Treesitter.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/no-clown-fiesta/Treesitter.lua b/lua/no-clown-fiesta/Treesitter.lua
index bb79c38..4fe5d24 100644
--- a/lua/no-clown-fiesta/Treesitter.lua
+++ b/lua/no-clown-fiesta/Treesitter.lua
@@ -1,5 +1,5 @@
local Treesitter = {
- TSComment = { fg = C.medium_gray },
+ TSComment = { fg = C.medium_gray, style = Config.italic_comments },
TSAnnotation = { fg = C.white },
TSAttribute = { fg = C.white },
TSConstructor = { fg = C.white },
@@ -8,8 +8,8 @@ local Treesitter = {
TSConditional = { fg = C.gray_blue },
TSException = { fg = C.red },
TSInclude = { fg = C.red },
- TSKeyword = { fg = C.gray_blue },
- TSKeywordFunction = { fg = C.purple },
+ TSKeyword = { fg = C.gray_blue, style = Config.italic_keywords },
+ TSKeywordFunction = { fg = C.purple, style = Config.italic_keywords },
TSLabel = { fg = C.white },
TSNamespace = { fg = C.white },
TSRepeat = { fg = C.gray_blue },
@@ -20,12 +20,12 @@ local Treesitter = {
TSBoolean = { fg = C.blue },
TSCharacter = { fg = C.light_green },
TSError = { fg = C.error_red },
- TSFunction = { fg = C.cyan },
+ TSFunction = { fg = C.cyan, style = Config.italic_functions },
TSFuncBuiltin = { fg = C.cyan },
TSMethod = { fg = C.cyan },
TSConstMacro = { fg = C.cyan },
TSFuncMacro = { fg = C.cyan },
- TSVariable = { fg = C.white },
+ TSVariable = { fg = C.white, style = Config.italic_variables },
TSVariableBuiltin = { fg = C.white },
TSProperty = { fg = C.white },
TSOperator = { fg = C.white },