mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +02:00
fix(blink): make sure blink.compat is setup correctly when used in extras
This commit is contained in:
parent
a03f796097
commit
91a3c663a7
1 changed files with 6 additions and 2 deletions
|
@ -21,7 +21,12 @@ return {
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"rafamadriz/friendly-snippets",
|
"rafamadriz/friendly-snippets",
|
||||||
-- add blink.compat to dependencies
|
-- add blink.compat to dependencies
|
||||||
-- { "saghen/blink.compat", opts = {} },
|
{
|
||||||
|
"saghen/blink.compat",
|
||||||
|
optional = true, -- make optional so it's only enabled if any extras need it
|
||||||
|
opts = {},
|
||||||
|
version = not vim.g.lazyvim_blink_main and "*",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
|
|
||||||
|
@ -39,7 +44,6 @@ return {
|
||||||
nerd_font_variant = "mono",
|
nerd_font_variant = "mono",
|
||||||
windows = {
|
windows = {
|
||||||
autocomplete = {
|
autocomplete = {
|
||||||
-- draw = "reversed",
|
|
||||||
winblend = vim.o.pumblend,
|
winblend = vim.o.pumblend,
|
||||||
},
|
},
|
||||||
documentation = {
|
documentation = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue