support cmp and organize fg selection
This commit is contained in:
@@ -84,6 +84,7 @@ currently supported.
|
|||||||
- [Lightline](https://github.com/itchyny/lightline.vim)
|
- [Lightline](https://github.com/itchyny/lightline.vim)
|
||||||
- [BarBar](https://github.com/romgrk/barbar.nvim)
|
- [BarBar](https://github.com/romgrk/barbar.nvim)
|
||||||
- [CoC](https://github.com/neoclide/coc.nvim)
|
- [CoC](https://github.com/neoclide/coc.nvim)
|
||||||
|
- [Cmp](https://github.com/hrsh7th/nvim-cmp)
|
||||||
- [Neogit](https://github.com/TimUntersberger/neogit)
|
- [Neogit](https://github.com/TimUntersberger/neogit)
|
||||||
- [WhichKey](https://github.com/folke/which-key.nvim)
|
- [WhichKey](https://github.com/folke/which-key.nvim)
|
||||||
- [Trouble](https://github.com/folke/trouble.nvim)
|
- [Trouble](https://github.com/folke/trouble.nvim)
|
||||||
|
|||||||
@@ -1,12 +1,20 @@
|
|||||||
local lush = require "lush"
|
local lush = require "lush"
|
||||||
|
|
||||||
local function generate(p, opt)
|
local function generate(p, opt)
|
||||||
local normal_bg = p.bg
|
local p1 = {
|
||||||
|
bg = p.bg,
|
||||||
|
fg1 = p.fg.da(10),
|
||||||
|
fg2 = p.fg.da(14),
|
||||||
|
fg3 = p.fg.da(20),
|
||||||
|
fg4 = p.fg.da(24),
|
||||||
|
fg5 = p.fg.da(30),
|
||||||
|
fg6 = p.fg.da(42),
|
||||||
|
}
|
||||||
|
|
||||||
if opt.darkness == "stark" then
|
if opt.darkness == "stark" then
|
||||||
normal_bg = p.bg_stark
|
p1.bg = p.bg_stark
|
||||||
elseif opt.darkness == "warm" then
|
elseif opt.darkness == "warm" then
|
||||||
normal_bg = p.bg_warm
|
p1.bg = p.bg_warm
|
||||||
elseif opt.darkness ~= nil then
|
elseif opt.darkness ~= nil then
|
||||||
local error_msg = "Unknown darkness value: " .. vim.inspect(darkness)
|
local error_msg = "Unknown darkness value: " .. vim.inspect(darkness)
|
||||||
vim.notify(error_msg, vim.log.levels.WARN, { title = "zenbones" })
|
vim.notify(error_msg, vim.log.levels.WARN, { title = "zenbones" })
|
||||||
@@ -27,7 +35,7 @@ local function generate(p, opt)
|
|||||||
-- styling for that group (meaning they mostly get styled as Normal)
|
-- styling for that group (meaning they mostly get styled as Normal)
|
||||||
-- or leave them commented to apply vims default colouring or linking.
|
-- or leave them commented to apply vims default colouring or linking.
|
||||||
|
|
||||||
Normal { bg = normal_bg, fg = p.fg }, -- normal text
|
Normal { bg = p1.bg, fg = p.fg }, -- normal text
|
||||||
|
|
||||||
Underlined { gui = "underline" }, -- (preferred) text that stands out, HTML links
|
Underlined { gui = "underline" }, -- (preferred) text that stands out, HTML links
|
||||||
Bold { gui = "bold" },
|
Bold { gui = "bold" },
|
||||||
@@ -38,9 +46,9 @@ local function generate(p, opt)
|
|||||||
WarningMsg { fg = p.wood }, -- warning messages
|
WarningMsg { fg = p.wood }, -- warning messages
|
||||||
|
|
||||||
Comment { fg = Normal.bg.li(opt.lighten_comments or 38).de(24), gui = opt.comment_gui or "italic" }, -- any comment
|
Comment { fg = Normal.bg.li(opt.lighten_comments or 38).de(24), gui = opt.comment_gui or "italic" }, -- any comment
|
||||||
Conceal { fg = p.fg.da(20), gui = "bold,italic" }, -- placeholder characters substituted for concealed text (see 'conceallevel')
|
Conceal { fg = p1.fg5, gui = "bold,italic" }, -- placeholder characters substituted for concealed text (see 'conceallevel')
|
||||||
|
|
||||||
Cursor { bg = p.fg.li(20), fg = p.bg }, -- character under the cursor
|
Cursor { bg = p.fg.li(20), fg = p1.bg }, -- character under the cursor
|
||||||
lCursor { Cursor, bg = Cursor.bg.da(35) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
lCursor { Cursor, bg = Cursor.bg.da(35) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
||||||
-- CursorIM { }, -- like Cursor, but used when in IME mode |CursorIM|
|
-- CursorIM { }, -- like Cursor, but used when in IME mode |CursorIM|
|
||||||
TermCursor { Cursor }, -- cursor in a focused terminal
|
TermCursor { Cursor }, -- cursor in a focused terminal
|
||||||
@@ -50,10 +58,10 @@ local function generate(p, opt)
|
|||||||
CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
|
CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
|
||||||
ColorColumn { bg = p.wood.saturation(46).lightness(Normal.bg.l + 18) }, -- used for the columns set with 'colorcolumn'
|
ColorColumn { bg = p.wood.saturation(46).lightness(Normal.bg.l + 18) }, -- used for the columns set with 'colorcolumn'
|
||||||
|
|
||||||
DiffAdd { bg = p.leaf.saturation(50).lightness(normal_bg.l + 8) }, -- diff mode: Added line |diff.txt|
|
DiffAdd { bg = p.leaf.saturation(50).lightness(p1.bg.l + 8) }, -- diff mode: Added line |diff.txt|
|
||||||
DiffChange { bg = p.water.saturation(50).lightness(normal_bg.l + 8) }, -- diff mode: Changed line |diff.txt|
|
DiffChange { bg = p.water.saturation(50).lightness(p1.bg.l + 8) }, -- diff mode: Changed line |diff.txt|
|
||||||
DiffDelete { bg = p.rose.saturation(30).lightness(normal_bg.l + 8) }, -- diff mode: Deleted line |diff.txt|
|
DiffDelete { bg = p.rose.saturation(30).lightness(p1.bg.l + 8) }, -- diff mode: Deleted line |diff.txt|
|
||||||
DiffText { bg = p.water.saturation(50).lightness(normal_bg.l + 20), fg = p.fg }, -- diff mode: Changed text within a changed line |diff.txt|
|
DiffText { bg = p.water.saturation(50).lightness(p1.bg.l + 20), fg = p.fg }, -- diff mode: Changed text within a changed line |diff.txt|
|
||||||
|
|
||||||
LineNr { fg = Normal.bg.li(30), bg = opt.lighten_line_nr and Normal.bg.li(6) or "NONE" }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
|
LineNr { fg = Normal.bg.li(30), bg = opt.lighten_line_nr and Normal.bg.li(6) or "NONE" }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
|
||||||
SignColumn { LineNr }, -- column where |signs| are displayed
|
SignColumn { LineNr }, -- column where |signs| are displayed
|
||||||
@@ -74,7 +82,7 @@ local function generate(p, opt)
|
|||||||
PmenuThumb { bg = Normal.bg.li(50) }, -- Popup menu: Thumb of the scrollbar.
|
PmenuThumb { bg = Normal.bg.li(50) }, -- Popup menu: Thumb of the scrollbar.
|
||||||
|
|
||||||
Search { bg = p.blossom.lightness(Normal.bg.l + 24), fg = p.fg }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
|
Search { bg = p.blossom.lightness(Normal.bg.l + 24), fg = p.fg }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
|
||||||
IncSearch { bg = p.blossom.lightness(Normal.bg.l + 56), fg = p.bg, gui = "bold" }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
|
IncSearch { bg = p.blossom.lightness(Normal.bg.l + 56), fg = p1.bg, gui = "bold" }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
|
||||||
-- Substitute { }, -- |:substitute| replacement text highlighting
|
-- Substitute { }, -- |:substitute| replacement text highlighting
|
||||||
MatchParen { Search }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
|
MatchParen { Search }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
|
||||||
-- QuickFixLine { }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
|
-- QuickFixLine { }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
|
||||||
@@ -99,7 +107,7 @@ local function generate(p, opt)
|
|||||||
Whitespace { NonText }, -- "nbsp", "space", "tab" and "trail" in 'listchars'
|
Whitespace { NonText }, -- "nbsp", "space", "tab" and "trail" in 'listchars'
|
||||||
EndOfBuffer { NonText }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
|
EndOfBuffer { NonText }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
|
||||||
|
|
||||||
WildMenu { bg = p.blossom, fg = p.bg }, -- current match in 'wildmenu' completion
|
WildMenu { bg = p.blossom, fg = p1.bg }, -- current match in 'wildmenu' completion
|
||||||
Directory { gui = "bold" }, -- directory names (and other special names in listings)
|
Directory { gui = "bold" }, -- directory names (and other special names in listings)
|
||||||
Question { MoreMsg }, -- |hit-enter| prompt and yes/no questions
|
Question { MoreMsg }, -- |hit-enter| prompt and yes/no questions
|
||||||
Title { gui = "bold" }, -- titles for output from ":set all", ":autocmd" etc.
|
Title { gui = "bold" }, -- titles for output from ":set all", ":autocmd" etc.
|
||||||
@@ -111,14 +119,14 @@ local function generate(p, opt)
|
|||||||
-- default,
|
-- default,
|
||||||
-- Uncomment and edit if you want more specific syntax highlighting.
|
-- Uncomment and edit if you want more specific syntax highlighting.
|
||||||
|
|
||||||
Constant { fg = p.fg.da(24), gui = "italic" }, -- (preferred) any constant
|
Constant { fg = p1.fg4, gui = "italic" }, -- (preferred) any constant
|
||||||
-- String { }, -- a string constant: "this is a string"
|
-- String { }, -- a string constant: "this is a string"
|
||||||
-- Character { }, -- a character constant: 'c', '\n'
|
-- Character { }, -- a character constant: 'c', '\n'
|
||||||
Number { fg = p.fg, gui = "italic" }, -- a number constant: 234, 0xff
|
Number { fg = p.fg, gui = "italic" }, -- a number constant: 234, 0xff
|
||||||
Boolean { Number }, -- a boolean constant: TRUE, false
|
Boolean { Number }, -- a boolean constant: TRUE, false
|
||||||
-- Float { }, -- a floating point constant: 2.3e10
|
-- Float { }, -- a floating point constant: 2.3e10
|
||||||
|
|
||||||
Identifier { fg = p.fg.da(14) }, -- (preferred) any variable name
|
Identifier { fg = p1.fg2 }, -- (preferred) any variable name
|
||||||
Function { fg = p.fg }, -- function name (also: methods for classes)
|
Function { fg = p.fg }, -- function name (also: methods for classes)
|
||||||
|
|
||||||
Statement { fg = p.fg, gui = "bold" }, -- (preferred) any statement
|
Statement { fg = p.fg, gui = "bold" }, -- (preferred) any statement
|
||||||
@@ -140,7 +148,7 @@ local function generate(p, opt)
|
|||||||
-- Structure { }, -- struct, union, enum, etc.
|
-- Structure { }, -- struct, union, enum, etc.
|
||||||
-- Typedef { }, -- A typedef
|
-- Typedef { }, -- A typedef
|
||||||
|
|
||||||
Special { fg = p.fg.da(12), gui = "bold" }, -- (preferred) any special symbol
|
Special { fg = p1.fg3, gui = "bold" }, -- (preferred) any special symbol
|
||||||
-- SpecialChar { }, -- special character in a constant
|
-- SpecialChar { }, -- special character in a constant
|
||||||
-- Tag { }, -- you can use CTRL-] on this
|
-- Tag { }, -- you can use CTRL-] on this
|
||||||
Delimiter { fg = Normal.bg.li(47) }, -- character that needs attention
|
Delimiter { fg = Normal.bg.li(47) }, -- character that needs attention
|
||||||
@@ -347,6 +355,12 @@ local function generate(p, opt)
|
|||||||
NvimTreeGitNew { diffAdded },
|
NvimTreeGitNew { diffAdded },
|
||||||
NvimTreeGitDeleted { diffRemoved },
|
NvimTreeGitDeleted { diffRemoved },
|
||||||
NvimTreeSpecialFile { fg = p.blossom, gui = "underline" },
|
NvimTreeSpecialFile { fg = p.blossom, gui = "underline" },
|
||||||
|
CmpItemAbbr { fg = p1.fg2 },
|
||||||
|
CmpItemAbbrDeprecated { fg = p1.fg6 },
|
||||||
|
CmpItemAbbrMatch { fg = p.fg, gui = "bold" },
|
||||||
|
CmpItemAbbrMatchFuzzy { fg = p1.fg1, gui = "bold" },
|
||||||
|
CmpItemKind { fg = p1.fg4 },
|
||||||
|
CmpItemMenu { fg = p1.fg5 },
|
||||||
}
|
}
|
||||||
end)
|
end)
|
||||||
-- stylua: ignore end
|
-- stylua: ignore end
|
||||||
|
|||||||
@@ -1,12 +1,20 @@
|
|||||||
local lush = require "lush"
|
local lush = require "lush"
|
||||||
|
|
||||||
local function generate(p, opt)
|
local function generate(p, opt)
|
||||||
local normal_bg = p.bg
|
local p1 = {
|
||||||
|
bg = p.bg,
|
||||||
|
fg1 = p.fg.li(11),
|
||||||
|
fg2 = p.fg.li(15),
|
||||||
|
fg3 = p.fg.li(22),
|
||||||
|
fg4 = p.fg.li(25),
|
||||||
|
fg5 = p.fg.li(31),
|
||||||
|
fg6 = p.fg.li(42),
|
||||||
|
}
|
||||||
|
|
||||||
if opt.lightness == "bright" then
|
if opt.lightness == "bright" then
|
||||||
normal_bg = p.bg_bright
|
p1.bg = p.bg_bright
|
||||||
elseif opt.lightness == "dim" then
|
elseif opt.lightness == "dim" then
|
||||||
normal_bg = p.bg_dim
|
p1.bg = p.bg_dim
|
||||||
elseif opt.lightness ~= nil then
|
elseif opt.lightness ~= nil then
|
||||||
local error_msg = "Unknown lightness value: " .. vim.inspect(lightness)
|
local error_msg = "Unknown lightness value: " .. vim.inspect(lightness)
|
||||||
vim.notify(error_msg, vim.log.levels.WARN, { title = "zenbones" })
|
vim.notify(error_msg, vim.log.levels.WARN, { title = "zenbones" })
|
||||||
@@ -27,7 +35,7 @@ local function generate(p, opt)
|
|||||||
-- styling for that group (meaning they mostly get styled as Normal)
|
-- styling for that group (meaning they mostly get styled as Normal)
|
||||||
-- or leave them commented to apply vims default colouring or linking.
|
-- or leave them commented to apply vims default colouring or linking.
|
||||||
|
|
||||||
Normal { bg = normal_bg, fg = p.fg }, -- normal text
|
Normal { bg = p1.bg, fg = p.fg }, -- normal text
|
||||||
|
|
||||||
Underlined { gui = "underline" }, -- (preferred) text that stands out, HTML links
|
Underlined { gui = "underline" }, -- (preferred) text that stands out, HTML links
|
||||||
Bold { gui = "bold" },
|
Bold { gui = "bold" },
|
||||||
@@ -38,9 +46,9 @@ local function generate(p, opt)
|
|||||||
WarningMsg { fg = p.wood }, -- warning messages
|
WarningMsg { fg = p.wood }, -- warning messages
|
||||||
|
|
||||||
Comment { fg = Normal.bg.da(opt.darken_comments or 38).de(28), gui = opt.comment_gui or "italic" }, -- any comment
|
Comment { fg = Normal.bg.da(opt.darken_comments or 38).de(28), gui = opt.comment_gui or "italic" }, -- any comment
|
||||||
Conceal { fg = p.fg.li(20), gui = "bold,italic" }, -- placeholder characters substituted for concealed text (see 'conceallevel')
|
Conceal { fg = p1.fg3, gui = "bold,italic" }, -- placeholder characters substituted for concealed text (see 'conceallevel')
|
||||||
|
|
||||||
Cursor { bg = p.fg, fg = p.bg }, -- character under the cursor
|
Cursor { bg = p.fg, fg = p1.bg }, -- character under the cursor
|
||||||
lCursor { Cursor, bg = Cursor.bg.li(20) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
lCursor { Cursor, bg = Cursor.bg.li(20) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
||||||
-- CursorIM { }, -- like Cursor, but used when in IME mode |CursorIM|
|
-- CursorIM { }, -- like Cursor, but used when in IME mode |CursorIM|
|
||||||
TermCursor { Cursor }, -- cursor in a focused terminal
|
TermCursor { Cursor }, -- cursor in a focused terminal
|
||||||
@@ -50,10 +58,10 @@ local function generate(p, opt)
|
|||||||
CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
|
CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
|
||||||
ColorColumn { bg = p.wood.saturation(46).lightness(Normal.bg.l - 12) }, -- used for the columns set with 'colorcolumn'
|
ColorColumn { bg = p.wood.saturation(46).lightness(Normal.bg.l - 12) }, -- used for the columns set with 'colorcolumn'
|
||||||
|
|
||||||
DiffAdd { bg = p.leaf.saturation(30).lightness(normal_bg.l - 6) }, -- diff mode: Added line |diff.txt|
|
DiffAdd { bg = p.leaf.saturation(30).lightness(p1.bg.l - 6) }, -- diff mode: Added line |diff.txt|
|
||||||
DiffChange { bg = p.water.saturation(30).lightness(normal_bg.l - 6) }, -- diff mode: Changed line |diff.txt|
|
DiffChange { bg = p.water.saturation(30).lightness(p1.bg.l - 6) }, -- diff mode: Changed line |diff.txt|
|
||||||
DiffDelete { bg = p.rose.saturation(40).lightness(normal_bg.l - 6) }, -- diff mode: Deleted line |diff.txt|
|
DiffDelete { bg = p.rose.saturation(40).lightness(p1.bg.l - 6) }, -- diff mode: Deleted line |diff.txt|
|
||||||
DiffText { bg = p.water.saturation(30).lightness(normal_bg.l - 18), fg = p.fg }, -- diff mode: Changed text within a changed line |diff.txt|
|
DiffText { bg = p.water.saturation(30).lightness(p1.bg.l - 18), fg = p.fg }, -- diff mode: Changed text within a changed line |diff.txt|
|
||||||
|
|
||||||
LineNr { fg = Normal.bg.da(32), bg = opt.darken_line_nr and Normal.bg.da(4) or "NONE" }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
|
LineNr { fg = Normal.bg.da(32), bg = opt.darken_line_nr and Normal.bg.da(4) or "NONE" }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
|
||||||
SignColumn { LineNr }, -- column where |signs| are displayed
|
SignColumn { LineNr }, -- column where |signs| are displayed
|
||||||
@@ -74,7 +82,7 @@ local function generate(p, opt)
|
|||||||
PmenuThumb { bg = Normal.bg.li(58) }, -- Popup menu: Thumb of the scrollbar.
|
PmenuThumb { bg = Normal.bg.li(58) }, -- Popup menu: Thumb of the scrollbar.
|
||||||
|
|
||||||
Search { bg = p.blossom.lightness(Normal.bg.l - 15), fg = p.fg }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
|
Search { bg = p.blossom.lightness(Normal.bg.l - 15), fg = p.fg }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
|
||||||
IncSearch { bg = p.blossom.lightness(Normal.bg.l - 35), fg = p.bg, gui = "bold" }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
|
IncSearch { bg = p.blossom.lightness(Normal.bg.l - 35), fg = p1.bg, gui = "bold" }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
|
||||||
-- Substitute { }, -- |:substitute| replacement text highlighting
|
-- Substitute { }, -- |:substitute| replacement text highlighting
|
||||||
MatchParen { Search }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
|
MatchParen { Search }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
|
||||||
-- QuickFixLine { }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
|
-- QuickFixLine { }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
|
||||||
@@ -99,7 +107,7 @@ local function generate(p, opt)
|
|||||||
Whitespace { NonText }, -- "nbsp", "space", "tab" and "trail" in 'listchars'
|
Whitespace { NonText }, -- "nbsp", "space", "tab" and "trail" in 'listchars'
|
||||||
EndOfBuffer { NonText }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
|
EndOfBuffer { NonText }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
|
||||||
|
|
||||||
WildMenu { bg = p.blossom, fg = p.bg }, -- current match in 'wildmenu' completion
|
WildMenu { bg = p.blossom, fg = p1.bg }, -- current match in 'wildmenu' completion
|
||||||
Directory { gui = "bold" }, -- directory names (and other special names in listings)
|
Directory { gui = "bold" }, -- directory names (and other special names in listings)
|
||||||
Question { MoreMsg }, -- |hit-enter| prompt and yes/no questions
|
Question { MoreMsg }, -- |hit-enter| prompt and yes/no questions
|
||||||
Title { gui = "bold" }, -- titles for output from ":set all", ":autocmd" etc.
|
Title { gui = "bold" }, -- titles for output from ":set all", ":autocmd" etc.
|
||||||
@@ -111,14 +119,14 @@ local function generate(p, opt)
|
|||||||
-- default,
|
-- default,
|
||||||
-- Uncomment and edit if you want more specific syntax highlighting.
|
-- Uncomment and edit if you want more specific syntax highlighting.
|
||||||
|
|
||||||
Constant { fg = p.fg.li(24), gui = "italic" }, -- (preferred) any constant
|
Constant { fg = p1.fg4, gui = "italic" }, -- (preferred) any constant
|
||||||
-- String { }, -- a string constant: "this is a string"
|
-- String { }, -- a string constant: "this is a string"
|
||||||
-- Character { }, -- a character constant: 'c', '\n'
|
-- Character { }, -- a character constant: 'c', '\n'
|
||||||
Number { fg = p.fg, gui = "italic" }, -- a number constant: 234, 0xff
|
Number { fg = p.fg, gui = "italic" }, -- a number constant: 234, 0xff
|
||||||
Boolean { Number }, -- a boolean constant: TRUE, false
|
Boolean { Number }, -- a boolean constant: TRUE, false
|
||||||
-- Float { }, -- a floating point constant: 2.3e10
|
-- Float { }, -- a floating point constant: 2.3e10
|
||||||
|
|
||||||
Identifier { fg = p.fg.li(15) }, -- (preferred) any variable name
|
Identifier { fg = p1.fg2 }, -- (preferred) any variable name
|
||||||
Function { fg = p.fg }, -- function name (also: methods for classes)
|
Function { fg = p.fg }, -- function name (also: methods for classes)
|
||||||
|
|
||||||
Statement { fg = p.fg, gui = "bold" }, -- (preferred) any statement
|
Statement { fg = p.fg, gui = "bold" }, -- (preferred) any statement
|
||||||
@@ -140,7 +148,7 @@ local function generate(p, opt)
|
|||||||
-- Structure { }, -- struct, union, enum, etc.
|
-- Structure { }, -- struct, union, enum, etc.
|
||||||
-- Typedef { }, -- A typedef
|
-- Typedef { }, -- A typedef
|
||||||
|
|
||||||
Special { fg = p.fg.li(23), gui = "bold" }, -- (preferred) any special symbol
|
Special { fg = p1.fg3, gui = "bold" }, -- (preferred) any special symbol
|
||||||
-- SpecialChar { }, -- special character in a constant
|
-- SpecialChar { }, -- special character in a constant
|
||||||
-- Tag { }, -- you can use CTRL-] on this
|
-- Tag { }, -- you can use CTRL-] on this
|
||||||
Delimiter { fg = Normal.bg.da(42) }, -- character that needs attention
|
Delimiter { fg = Normal.bg.da(42) }, -- character that needs attention
|
||||||
@@ -347,6 +355,12 @@ local function generate(p, opt)
|
|||||||
NvimTreeGitNew { diffAdded },
|
NvimTreeGitNew { diffAdded },
|
||||||
NvimTreeGitDeleted { diffRemoved },
|
NvimTreeGitDeleted { diffRemoved },
|
||||||
NvimTreeSpecialFile { fg = p.blossom, gui = "underline" },
|
NvimTreeSpecialFile { fg = p.blossom, gui = "underline" },
|
||||||
|
CmpItemAbbr { fg = p1.fg2 },
|
||||||
|
CmpItemAbbrDeprecated { fg = p1.fg6 },
|
||||||
|
CmpItemAbbrMatch { fg = p.fg, gui = "bold" },
|
||||||
|
CmpItemAbbrMatchFuzzy { fg = p1.fg1, gui = "bold" },
|
||||||
|
CmpItemKind { fg = p1.fg4 },
|
||||||
|
CmpItemMenu { fg = p1.fg5 },
|
||||||
}
|
}
|
||||||
end)
|
end)
|
||||||
-- stylua: ignore end
|
-- stylua: ignore end
|
||||||
|
|||||||
Reference in New Issue
Block a user