From c81e41d13fd2a47ccf583e07fb693da421f72d56 Mon Sep 17 00:00:00 2001 From: shaunsingh <71196912+shaunsingh@users.noreply.github.com> Date: Wed, 2 Jun 2021 09:20:45 -0400 Subject: [PATCH] Update theme.lua --- lua/solarized/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/solarized/theme.lua b/lua/solarized/theme.lua index 29927af..e1af644 100644 --- a/lua/solarized/theme.lua +++ b/lua/solarized/theme.lua @@ -273,7 +273,7 @@ theme.loadTreeSitter = function () if vim.g.solarized_italic_functions == true then treesitter.TSFunction = { fg = solarized.cursor, style = 'bold,italic' } -- For fuction (calls and definitions). - treesitter.TSMethod = { fg = solarized.cursor, style = 'bold,italic' } -- For method calls and definitions. + treesitter.TSMethod = { fg = solarized.purple, style = 'bold,italic' } -- For method calls and definitions. treesitter.TSFuncBuiltin = { fg = solarized.yellow, style = 'bold,italic' } -- For builtin functions: `table.insert` in Lua. else treesitter.TSFunction = { fg = solarized.cursor, style = 'bold' } -- For fuction (calls and definitions).