Skip to content

Commit d5f63f5

Browse files
authored
More vibrant syntax highlighting
1 parent 42c63a0 commit d5f63f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/solarized/theme.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,11 @@ theme.loadTreeSitter = function ()
272272
end
273273

274274
if vim.g.solarized_italic_functions == true then
275-
treesitter.TSFunction = { fg = solarized.cursor, style = 'bold,italic' } -- For fuction (calls and definitions).
275+
treesitter.TSFunction = { fg = solarized.purple, style = 'bold,italic' } -- For fuction (calls and definitions).
276276
treesitter.TSMethod = { fg = solarized.purple, style = 'bold,italic' } -- For method calls and definitions.
277277
treesitter.TSFuncBuiltin = { fg = solarized.yellow, style = 'bold,italic' } -- For builtin functions: `table.insert` in Lua.
278278
else
279-
treesitter.TSFunction = { fg = solarized.cursor, style = 'bold' } -- For fuction (calls and definitions).
279+
treesitter.TSFunction = { fg = solarized.purple, style = 'bold' } -- For fuction (calls and definitions).
280280
treesitter.TSMethod = { fg = solarized.purple, style = 'bold' } -- For method calls and definitions.
281281
treesitter.TSFuncBuiltin = { fg = solarized.yellow, style = 'bold' } -- For builtin functions: `table.insert` in Lua.
282282
end

0 commit comments

Comments
 (0)