Skip to content

Commit

Permalink
More vibrant syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunsingh authored Jun 2, 2021
1 parent 42c63a0 commit d5f63f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/solarized/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ theme.loadTreeSitter = function ()
end

if vim.g.solarized_italic_functions == true then
treesitter.TSFunction = { fg = solarized.cursor, style = 'bold,italic' } -- For fuction (calls and definitions).
treesitter.TSFunction = { fg = solarized.purple, style = 'bold,italic' } -- For fuction (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).
treesitter.TSFunction = { fg = solarized.purple, style = 'bold' } -- For fuction (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
Expand Down

0 comments on commit d5f63f5

Please sign in to comment.