add lazy{git,sql} and neovim autocomplete

This commit is contained in:
Sean Kovacs 2026-01-30 13:38:17 -05:00
commit 53d35f6349
Signed by: sckova
GPG key ID: 00F325187C68651A
2 changed files with 16 additions and 0 deletions

View file

@ -133,6 +133,17 @@
fetchingTimeout = 200;
maxViewEntries = 30;
};
mapping = {
__raw = ''
cmp.mapping.preset.insert({
['<C-b>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
['<C-Space>'] = cmp.mapping.complete(),
['<C-e>'] = cmp.mapping.abort(),
['<CR>'] = cmp.mapping.confirm({ select = true }),
})
'';
};
snippet = {
expand = "luasnip";
};