feat: change Visual color, add bold style to func
This commit is contained in:
parent
90e68b09f3
commit
3bb4ddce87
@ -216,7 +216,7 @@ M.setup = function()
|
|||||||
-- titles for output from ":set all", ":autocmd" etc.
|
-- titles for output from ":set all", ":autocmd" etc.
|
||||||
Title = { fg = c.green, bg = c.none, bold = config.bold },
|
Title = { fg = c.green, bg = c.none, bold = config.bold },
|
||||||
-- Visual mode selection
|
-- Visual mode selection
|
||||||
Visual = { fg = c.none, bg = c.bg1 },
|
Visual = { fg = c.none, bg = c.select },
|
||||||
-- Visual mode selection when vim is "Not Owning the Selection".
|
-- Visual mode selection when vim is "Not Owning the Selection".
|
||||||
VisualNOS = { link = 'Visual' },
|
VisualNOS = { link = 'Visual' },
|
||||||
-- warning messages
|
-- warning messages
|
||||||
@ -276,7 +276,7 @@ M.setup = function()
|
|||||||
['@method'] = { link = 'Function' },
|
['@method'] = { link = 'Function' },
|
||||||
['@method.call'] = { link = 'Function' },
|
['@method.call'] = { link = 'Function' },
|
||||||
['@keyword'] = { link = 'Keyword' },
|
['@keyword'] = { link = 'Keyword' },
|
||||||
['@keyword.function'] = { link = 'Function' },
|
['@keyword.function'] = { fg = c.yellow, bold = config.bold },
|
||||||
['@keyword.operator'] = { fg = c.yellow },
|
['@keyword.operator'] = { fg = c.yellow },
|
||||||
['@keyword.return'] = { fg = c.yellow },
|
['@keyword.return'] = { fg = c.yellow },
|
||||||
['@keyword.coroutine'] = { fg = c.yellow },
|
['@keyword.coroutine'] = { fg = c.yellow },
|
||||||
|
@ -8,6 +8,7 @@ return {
|
|||||||
bg_1 = '#101010',
|
bg_1 = '#101010',
|
||||||
bg = '#181818',
|
bg = '#181818',
|
||||||
bg1 = '#282828',
|
bg1 = '#282828',
|
||||||
|
select = '#4f4f4f',
|
||||||
bg2 = '#453d41',
|
bg2 = '#453d41',
|
||||||
bg3 = '#484848',
|
bg3 = '#484848',
|
||||||
bg4 = '#52494e',
|
bg4 = '#52494e',
|
||||||
|
Loading…
Reference in New Issue
Block a user