feat(plugins): replace neodev with lazydev

This commit is contained in:
2024-11-10 15:12:42 +01:00
parent c10feb7712
commit 1ba07cf703
4 changed files with 24 additions and 11 deletions

View File

@ -8,7 +8,7 @@ luasnip.config.setup {
updateevents = "TextChanged,TextChangedI",
enable_autosnippets = true,
}
luasnip.filetype_extend("jj", {"gitcommit"})
luasnip.filetype_extend("jj", { "gitcommit" })
local has_words_before = function()
unpack = unpack or table.unpack
@ -40,7 +40,7 @@ cmp.setup {
['<Tab>'] = cmp.mapping(function(fallback)
if cmp.visible() then
if #cmp.get_entries() == 1 then
cmp.confirm({select = true})
cmp.confirm({ select = true })
else
cmp.select_next_item()
end
@ -49,7 +49,7 @@ cmp.setup {
elseif has_words_before() then
cmp.complete()
if #cmp.get_entries() == 1 then
cmp.confirm({select = true})
cmp.confirm({ select = true })
end
else
fallback()
@ -66,6 +66,9 @@ cmp.setup {
end, { 'i', 's' }),
},
sources = {
{ name = 'lazydev',
group_index = 0 },
{ name = 'nvim_lsp' },
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },