46 lines
1.0 KiB
Lua
46 lines
1.0 KiB
Lua
---@module 'lazy'
|
|
---@type LazySpec
|
|
return {
|
|
'saghen/blink.cmp',
|
|
event = 'VimEnter',
|
|
version = '1.*',
|
|
dependencies = {
|
|
{
|
|
'L3MON4D3/LuaSnip',
|
|
version = '2.*',
|
|
build = (function()
|
|
if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then return end
|
|
return 'make install_jsregexp'
|
|
end)(),
|
|
dependencies = {
|
|
-- {
|
|
-- 'rafamadriz/friendly-snippets',
|
|
-- config = function()
|
|
-- require('luasnip.loaders.from_vscode').lazy_load()
|
|
-- end,
|
|
-- },
|
|
},
|
|
opts = {},
|
|
},
|
|
},
|
|
---@module 'blink.cmp'
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
keymap = {
|
|
preset = 'default',
|
|
},
|
|
appearance = {
|
|
nerd_font_variant = 'mono',
|
|
},
|
|
completion = {
|
|
documentation = { auto_show = false, auto_show_delay_ms = 500 },
|
|
},
|
|
sources = {
|
|
default = { 'lsp', 'path', 'snippets' },
|
|
},
|
|
snippets = { preset = 'luasnip' },
|
|
fuzzy = { implementation = 'lua' },
|
|
signature = { enabled = true },
|
|
},
|
|
}
|