From 699aa9cd153dd14c00405fa26a7b9d93aed6dbe2 Mon Sep 17 00:00:00 2001 From: Marco Galli Date: Tue, 14 Jun 2022 23:15:47 +0200 Subject: Fix WinSeparator hl and make it consistent with Telescope window borders, also make the configuration variables actually work (#3) * Fix WinSeparator hl and make it consistent with Telescope border color * Make config variables work README configuration description * Remove useless comment --- lua/no-clown-fiesta/Treesitter.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lua/no-clown-fiesta/Treesitter.lua') 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 }, -- cgit v1.2.3-70-g09d2