mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(blink): only override color symbol kind for blink
This commit is contained in:
parent
63eab6d9a5
commit
b07378dde4
1 changed files with 3 additions and 4 deletions
|
@ -147,10 +147,9 @@ return {
|
|||
"saghen/blink.cmp",
|
||||
opts = function(_, opts)
|
||||
opts.appearance = opts.appearance or {}
|
||||
opts.appearance.kind_icons = LazyVim.config.icons.kinds
|
||||
|
||||
-- Use block instead of icon for color items to make swatches more usable
|
||||
opts.appearance.kind_icons.Color = "██"
|
||||
opts.appearance.kind_icons = vim.tbl_extend("keep", {
|
||||
Color = "██", -- Use block instead of icon for color items to make swatches more usable
|
||||
}, LazyVim.config.icons.kinds)
|
||||
end,
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue