From 42c63a016b61eb7fcc6d260d17a1b1735efbe589 Mon Sep 17 00:00:00 2001 From: shaunsingh <71196912+shaunsingh@users.noreply.github.com> Date: Wed, 2 Jun 2021 09:22:32 -0400 Subject: [PATCH] Added more accurate colors --- 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 e1af644..0190bf7 100644 --- a/lua/solarized/theme.lua +++ b/lua/solarized/theme.lua @@ -277,7 +277,7 @@ theme.loadTreeSitter = function () 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). - treesitter.TSMethod = { fg = solarized.cursor, style = 'bold' } -- For method calls and definitions. + treesitter.TSMethod = { fg = solarized.purple, style = 'bold' } -- For method calls and definitions. treesitter.TSFuncBuiltin = { fg = solarized.yellow, style = 'bold' } -- For builtin functions: `table.insert` in Lua. end