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({ require('snippy').setup({
mappings = { mappings = {
is = { is = {
['<Tab>'] = 'expand_or_advance', ['<Tab>'] = 'expand_or_advance',
['<S-Tab>'] = 'previous', ['<S-Tab>'] = 'previous',
},
nx = {
['<leader>x'] = 'cut_text',
},
}, },
nx = {
['<leader>x'] = 'cut_text',
},
},
}) })