Nvim: update all plugins to used ones, disable unused

This commit is contained in:
Robert Kmieć
2023-10-19 23:47:02 +02:00
parent ec0ae0ee13
commit c436875e4b
32 changed files with 179 additions and 92 deletions

View File

@@ -36,7 +36,6 @@ return {
{ name = 'path' },
{ name = 'snippy' },
{ name = 'calc' },
-- { name = 'cmp_matlab' },
{ name = 'cmp_git' },
}, {
{ name = 'buffer', keyword_length = 5, max_item_count = 10, priority = -5 },
@@ -65,9 +64,9 @@ return {
cmp.setup.cmdline(':', {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
{ name = 'path' }
{ name = 'path' }
}, {
{ name = 'cmdline' }
{ name = 'cmdline' }
})
})