diff --git a/lua/solarized/theme.lua b/lua/solarized/theme.lua index a6c9ba4..a004995 100644 --- a/lua/solarized/theme.lua +++ b/lua/solarized/theme.lua @@ -285,8 +285,8 @@ theme.loadTreeSitter = function () treesitter.TSVariable = { fg = solarized.gray, style = 'italic' } -- Any variable name that does not have another highlight. treesitter.TSVariableBuiltin = { fg = solarized.gray, style = 'italic' } -- Variable names that are defined by the languages, like `this` or `self`. else - treesitter.TSVariable = { fg = solarized.gray, style = 'bold' } -- Any variable name that does not have another highlight. - treesitter.TSVariableBuiltin = { fg = solarized.gray, style = 'bold' } -- Variable names that are defined by the languages, like `this` or `self`. + treesitter.TSVariable = { fg = solarized.gray} -- Any variable name that does not have another highlight. + treesitter.TSVariableBuiltin = { fg = solarized.gray} -- Variable names that are defined by the languages, like `this` or `self`. end return treesitter