Added more accurate colors

This commit is contained in:
shaunsingh
2021-06-02 09:22:32 -04:00
committed by GitHub
parent c81e41d13f
commit 42c63a016b

View File

@@ -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