From 7411bc7260345abd544cfb6e4635be0ee2fb641d Mon Sep 17 00:00:00 2001 From: shaunsingh <71196912+shaunsingh@users.noreply.github.com> Date: Wed, 2 Jun 2021 10:11:43 -0400 Subject: [PATCH] Update theme.lua --- lua/solarized/theme.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lua/solarized/theme.lua b/lua/solarized/theme.lua index 0eeb639..5824331 100644 --- a/lua/solarized/theme.lua +++ b/lua/solarized/theme.lua @@ -260,15 +260,15 @@ theme.loadTreeSitter = function () end if vim.g.solarized_italic_keywords == true then - treesitter.TSConditional = { fg = solarized.purple, style = 'italic' } -- For keywords related to conditionnals. - treesitter.TSKeyword = { fg = solarized.purple, style = 'italic' } -- For keywords that don't fall in previous categories. - treesitter.TSRepeat = { fg = solarized.purple, style = 'bold,italic' } -- For keywords related to loops. - treesitter.TSKeywordFunction = { fg = solarized.purple, style = 'bold,italic' } -- For keywords used to define a fuction. + treesitter.TSConditional = { fg = solarized.greeen, style = 'italic' } -- For keywords related to conditionnals. + treesitter.TSKeyword = { fg = solarized.green, style = 'italic' } -- For keywords that don't fall in previous categories. + treesitter.TSRepeat = { fg = solarized.green, style = 'bold,italic' } -- For keywords related to loops. + treesitter.TSKeywordFunction = { fg = solarized.green, style = 'bold,italic' } -- For keywords used to define a fuction. else - treesitter.TSConditional = { fg = solarized.purple} -- For keywords related to conditionnals. - treesitter.TSKeyword = { fg = solarized.purple} -- For keywords that don't fall in previous categories. - treesitter.TSRepeat = { fg = solarized.purple, style = 'bold' } -- For keywords related to loops. - treesitter.TSKeywordFunction = { fg = solarized.purple, style = 'bold' } -- For keywords used to define a fuction. + treesitter.TSConditional = { fg = solarized.green} -- For keywords related to conditionnals. + treesitter.TSKeyword = { fg = solarized.green} -- For keywords that don't fall in previous categories. + treesitter.TSRepeat = { fg = solarized.green, style = 'bold' } -- For keywords related to loops. + treesitter.TSKeywordFunction = { fg = solarized.green, style = 'bold' } -- For keywords used to define a fuction. end if vim.g.solarized_italic_functions == true then