more stuff too lazy to seperate
This commit is contained in:
@ -44,8 +44,7 @@ highlight('EndOfBuffer', { fg = vim.g.terminal_color_background })
|
||||
|
||||
-- plugin highlights ----------------------------------------------------------
|
||||
-- telescope
|
||||
highlight('TelescopeMatching', { bg = c.gray01 })
|
||||
highlight('TelescopeNormal', { bg = c.bg_dark })
|
||||
highlight('TelescopeMatching', { bg = c.gray01, fg = c.blue })
|
||||
|
||||
highlight('TelescopePreviewBorder', { bg = c.bg_dark })
|
||||
highlight('TelescopePreviewNormal', { bg = c.bg_dark })
|
||||
@ -61,7 +60,7 @@ highlight('TelescopeResultsNormal', { bg = c.bg_dark })
|
||||
highlight('TelescopeResultsTitle', { bg = c.bg_dark, fg = c.bg_dark })
|
||||
|
||||
highlight('TelescopeSelection', { bg = vim.g.terminal_color_background })
|
||||
highlight('TelescopeSelectionCaret', { bg = vim.g.terminal_color_background, fg = c.red})
|
||||
highlight('TelescopeSelectionCaret', { bg = vim.g.terminal_color_background, fg = c.cyan, bold = true })
|
||||
|
||||
-- alpha
|
||||
highlight('AlphaHeader', { fg = colors.blue })
|
||||
@ -71,3 +70,17 @@ highlight('AlphaFooter', { fg = colors.blue })
|
||||
|
||||
-- fidget
|
||||
highlight('FidgetTask', { fg = vim.g.terminal_color_foreground })
|
||||
|
||||
-- norg + headings
|
||||
highlight({ "@neorg.headings.1.title", "@neorg.headings.1.icon" },
|
||||
{ fg = colors.yellow, bg = '#2a211c' })
|
||||
highlight({ "@neorg.headings.2.title", "@neorg.headings.2.icon" },
|
||||
{ fg = colors.blue, bg = '#201e25' })
|
||||
highlight({ "@neorg.headings.3.title", "@neorg.headings.3.icon" },
|
||||
{ fg = colors.cyan, bg = '#2b1b20' })
|
||||
highlight({ "@neorg.headings.4.title", "@neorg.headings.4.icon" },
|
||||
{ fg = colors.green, bg = '#1d201e' })
|
||||
highlight({ "@neorg.headings.5.title", "@neorg.headings.5.icon" },
|
||||
{ fg = colors.magenta, bg = '#251a21' })
|
||||
highlight({ "@neorg.headings.6.title", "@neorg.headings.6.icon" },
|
||||
{ fg = colors.white, bg = '#212126' })
|
Reference in New Issue
Block a user