Skip to content

Commit 63c13a7

Browse files
committed
Disable bold for TSFunction, TSMethod and TSFuncBuiltin
1 parent 26dea71 commit 63c13a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lua/solarized/theme.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,9 @@ theme.loadTreeSitter = function ()
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.purple, style = 'bold' } -- For fuction (calls and definitions).
280-
treesitter.TSMethod = { fg = solarized.purple, style = 'bold' } -- For method calls and definitions.
281-
treesitter.TSFuncBuiltin = { fg = solarized.yellow, style = 'bold' } -- For builtin functions: `table.insert` in Lua.
279+
treesitter.TSFunction = { fg = solarized.purple } -- For fuction (calls and definitions).
280+
treesitter.TSMethod = { fg = solarized.purple } -- For method calls and definitions.
281+
treesitter.TSFuncBuiltin = { fg = solarized.yellow } -- For builtin functions: `table.insert` in Lua.
282282
end
283283

284284
if vim.g.solarized_italic_variables == true then
@@ -438,7 +438,7 @@ theme.loadPlugins = function()
438438
-- Indent Blankline
439439
IndentBlanklineChar = { fg = solarized.highlight },
440440
IndentBlanklineContextChar = { fg = solarized.disabled },
441-
441+
442442
-- Nvim dap
443443
DapBreakpoint = { fg = solarized.red },
444444
DapStopped = { fg = solarized.green },

0 commit comments

Comments
 (0)