nvim: move to lazy package manager

This commit is contained in:
Robert Kmieć
2023-02-14 14:42:29 +01:00
parent cf374dbbb5
commit f327679ca9
104 changed files with 1617 additions and 1501 deletions

View File

@@ -0,0 +1,21 @@
return {
'dcampos/nvim-snippy',
dependencies = {
'dcampos/cmp-snippy',
'honza/vim-snippets',
},
event = "InsertEnter",
config = function()
require('snippy').setup({
mappings = {
is = {
['<Tab>'] = 'expand_or_advance',
['<S-Tab>'] = 'previous',
},
nx = {
['<leader>x'] = 'cut_text',
},
},
})
end
}