55 lines
1.3 KiB
Lua
55 lines
1.3 KiB
Lua
return { -- Autocompletion
|
|
'saghen/blink.cmp',
|
|
event = 'VimEnter',
|
|
version = '1.*',
|
|
dependencies = {
|
|
-- Snippet Engine
|
|
{
|
|
'L3MON4D3/LuaSnip',
|
|
version = '2.*',
|
|
build = (function()
|
|
-- Build Step is needed for regex support in snippets.
|
|
-- This step is not supported in many windows environments.
|
|
-- Remove the below condition to re-enable on windows.
|
|
if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then
|
|
return
|
|
end
|
|
return 'make install_jsregexp'
|
|
end)(),
|
|
dependencies = {},
|
|
opts = {},
|
|
},
|
|
'folke/lazydev.nvim',
|
|
},
|
|
--- @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', 'lazydev' },
|
|
providers = {
|
|
lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 },
|
|
},
|
|
},
|
|
|
|
snippets = { preset = 'luasnip' },
|
|
|
|
fuzzy = { implementation = 'prefer_rust_with_warning' },
|
|
|
|
signature = { enabled = true },
|
|
},
|
|
}
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|