From ab113cac2cdae1cd187db05474d3aaaf8d05dc56 Mon Sep 17 00:00:00 2001 From: shaunsingh <71196912+shaunsingh@users.noreply.github.com> Date: Tue, 1 Jun 2021 13:27:55 -0400 Subject: [PATCH] Update theme.lua --- lua/solarized/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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