mirror of
https://github.com/webhooked/kanso.nvim.git
synced 2026-06-05 16:46:59 +02:00
Add option to disable italic styling
This commit is contained in:
parent
921f85c99a
commit
6d7770eda6
5 changed files with 13 additions and 8 deletions
|
|
@ -62,7 +62,7 @@ function M.setup(colors, config)
|
|||
NvimTreeSymlink = { link = "Type" },
|
||||
NvimTreeFolderName = { link = "Directory" },
|
||||
NvimTreeExecFile = { fg = theme.syn.string, bold = true },
|
||||
NvimTreeOpenedFile = { fg = theme.syn.special1, italic = true },
|
||||
NvimTreeOpenedFile = { fg = theme.syn.special1, italic = not config.disableItalics },
|
||||
NvimTreeWinSeparator = { link = "WinSeparator" },
|
||||
NvimTreeWindowPicker = { bg = theme.ui.bg_m1, fg = theme.syn.special1, bold = true },
|
||||
-- NeoTree
|
||||
|
|
@ -456,7 +456,7 @@ function M.setup(colors, config)
|
|||
NeotestFile = { fg = theme.syn.fun, },
|
||||
NeotestFocused = { bold = true, underline = true, },
|
||||
NeotestIndent = { fg = theme.ui.special, bold = true, },
|
||||
NeotestMarked = { fg = theme.diag.warning, italic = true, },
|
||||
NeotestMarked = { fg = theme.diag.warning, italic = not config.disableItalics, },
|
||||
NeotestNamespace = { fg = theme.syn.fun, },
|
||||
NeotestPassed = { fg = theme.diag.ok },
|
||||
NeotestRunning = { fg = theme.vcs.changed, },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue