fix(nvim): re-enable snippy keymaps

This commit is contained in:
Bruno Carlin 2025-02-11 15:23:05 +01:00
parent 78a73ded25
commit a2c7dd34c1

View file

@ -1,11 +1,11 @@
require('snippy').setup({
mappings = {
is = {
['<Tab>'] = 'expand_or_advance',
['<S-Tab>'] = 'previous',
},
nx = {
['<leader>x'] = 'cut_text',
},
mappings = {
is = {
['<Tab>'] = 'expand_or_advance',
['<S-Tab>'] = 'previous',
},
nx = {
['<leader>x'] = 'cut_text',
},
},
})