Compare commits
5 commits
ab19e26648
...
d09a691f14
Author | SHA1 | Date | |
---|---|---|---|
d09a691f14 | |||
3a59a9833a | |||
a45ba46fbf | |||
7a09f88eb1 | |||
d31ba7a31c |
1 changed files with 34 additions and 13 deletions
|
@ -90,6 +90,10 @@ M.highlights = function()
|
|||
Normal = { fg = fg, bg = bg }, -- normal text
|
||||
NormalNC = { link = 'Normal' }, -- normal text in non-current windows
|
||||
|
||||
NormalFloat = { link = 'Normal' }, -- floating windows
|
||||
FloatBorder = { fg = C.gray },
|
||||
FloatTitle = { fg = C.blue },
|
||||
|
||||
Comment = { fg = C.bg3, italic = true }, -- any comment
|
||||
|
||||
Constant = { fg = C.orange }, -- any constant
|
||||
|
@ -99,7 +103,7 @@ M.highlights = function()
|
|||
Boolean = { fg = C.aqua, bold = true, italic = true }, -- a boolean constant: TRUE, false
|
||||
Float = { link = 'String' }, -- a floating point constant: 2.3e10
|
||||
|
||||
Identifier = { fg = C.fg3 },
|
||||
Identifier = { fg = fg },
|
||||
Function = { fg = C.blue },
|
||||
|
||||
Statement = { fg = C.green }, -- any statement
|
||||
|
@ -138,7 +142,7 @@ M.highlights = function()
|
|||
},
|
||||
|
||||
additional = {
|
||||
StatusLine = { fg = C.fg3 , bg = C.bg2, reverse = true},
|
||||
StatusLine = { fg = fg , bg = C.bg2, reverse = true},
|
||||
StatusLineNC = { fg = C.bg4, bg = C.bg2, reverse = true},
|
||||
Visual = { fg = C.bg3, bg = bg, reverse = true},
|
||||
|
||||
|
@ -197,7 +201,15 @@ M.highlights = function()
|
|||
TabLineFill = { fg = C.fg4 , bg = C.bg2 },
|
||||
TabLineSel = { fg = C.yellow, bg = bg },
|
||||
|
||||
MatchParen = { fg = C.red, bg = C.reg_bg, bold = true },
|
||||
MatchParen = { fg = C.red, bg = C.red_bg, bold = true },
|
||||
},
|
||||
|
||||
diagnostic = {
|
||||
DiagnosticOk = { fg = C.green },
|
||||
DiagnosticWarn = { link = 'Warning' },
|
||||
DiagnosticError = { link = 'Error' },
|
||||
DiagnosticInfo = { fg = C.br_blue },
|
||||
DiagnosticHint = { fg = C.fg0 },
|
||||
},
|
||||
|
||||
pum = {
|
||||
|
@ -217,7 +229,7 @@ M.highlights = function()
|
|||
vimCommentString = { fg = C.purple },
|
||||
vimCommand = { fg = C.yellow },
|
||||
vimCmdSep = { fg = C.blue, bold = true },
|
||||
helpExample = { fg = C.fg3 },
|
||||
helpExample = { fg = fg },
|
||||
helpOption = { fg = C.aqua },
|
||||
helpNote = { fg = C.purple },
|
||||
helpVim = { fg = C.purple },
|
||||
|
@ -280,9 +292,9 @@ M.highlights = function()
|
|||
markdownBlockquote = { fg = C.fg2, bold = true, italic = true },
|
||||
markdownRule = { link = 'Comment' },
|
||||
|
||||
markdownItalic = { fg = C.fg3, italic = true },
|
||||
markdownBold = { fg = C.fg3, bold = true },
|
||||
markdownBoldItalic = { fg = C.fg3, bold = true, italic = true },
|
||||
markdownItalic = { fg = fg, italic = true },
|
||||
markdownBold = { fg = fg, bold = true },
|
||||
markdownBoldItalic = { fg = fg, bold = true, italic = true },
|
||||
markdownCode = { fg = C.orange },
|
||||
markdownCodeBlock = { link = 'markdownCode' },
|
||||
markdownItalicDelimiter = { link = 'Comment' },
|
||||
|
@ -360,8 +372,8 @@ M.highlights = function()
|
|||
TSTagAttribute = { link = 'TSProperty' },
|
||||
TSTagDelimiter = { link = 'Delimiter' },
|
||||
TSText = { link = 'TSNone' },
|
||||
TSStrong = { fg = C.fg3, bold = true },
|
||||
TSEmphasis = { fg = C.fg3, italic = true },
|
||||
TSStrong = { fg = fg, bold = true },
|
||||
TSEmphasis = { fg = fg, italic = true },
|
||||
TSUnderline = { underline = true },
|
||||
TSStrike = { strikethrough = true },
|
||||
TSTitle = { link = 'Title' },
|
||||
|
@ -433,7 +445,7 @@ M.highlights = function()
|
|||
NeogitHunkHeader = { fg = C.purple },
|
||||
NeogitHunkHeaderHighlight = { fg = C.br_purple },
|
||||
NeogitDiffContext = { fg = C.bg4 },
|
||||
NeogitDiffContextHighlight = { bg = C.bg0 },
|
||||
NeogitDiffContextHighlight = { bg = bg },
|
||||
NeogitDiffAdd = { fg = C.green, bg = C.green_bg },
|
||||
NeogitDiffAddHighlight = { fg = C.green, bg = C.green_bg },
|
||||
NeogitDiffDelete = { fg = C.red, bg = C.red_bg },
|
||||
|
@ -492,10 +504,10 @@ M.highlights = function()
|
|||
|
||||
-- 'nvim-telescope/telescope.nvim'
|
||||
telescope = {
|
||||
TelescopeBorder = { fg = C.gray },
|
||||
TelescopeBorder = { link = 'FloatBorder' },
|
||||
TelescopePromptBorder = { fg = C.fg0 },
|
||||
TelescopeTitle = { fg = C.blue, bold = true },
|
||||
TelescopePromptPrefix = { fg = C.blue },
|
||||
TelescopeTitle = { link = 'FloatTitle' },
|
||||
TelescopePromptPrefix = { link = 'FloatTitle' },
|
||||
TelescopePromptCounter = { fg = C.bg3 },
|
||||
TelescopeNormal = { fg = C.gray },
|
||||
TelescopeMatching = { fg = C.fg0 },
|
||||
|
@ -504,6 +516,15 @@ M.highlights = function()
|
|||
TelescopeMultiIcon = { link = 'TelescopeMultiSelection' },
|
||||
},
|
||||
|
||||
-- 'neovim/nvim-lspconfig'
|
||||
lspconfig = {
|
||||
LspInfoTitle = { link = 'FloatTitle' },
|
||||
LspInfoList = { link = 'Function' },
|
||||
LspInfoFiletype = { link = 'Type' },
|
||||
LspInfoTip = { link = 'Comment' },
|
||||
LspInfoBorder = { link = 'FloatBorder' },
|
||||
},
|
||||
|
||||
-- 'hrsh7th/nvim-cmp'
|
||||
nvim_cmp = {
|
||||
CmpItemAbbr = { link = 'Comment' },
|
||||
|
|
Loading…
Add table
Reference in a new issue