fix(luasnip): disable nvim-snippets when luasnip is enabled. Fixes #3547

This commit is contained in:
Folke Lemaitre
2024-06-09 07:37:09 +02:00
parent 28426cc31c
commit aa059e0d49

View File

@ -46,4 +46,8 @@ return {
{ "<s-tab>", function() require("luasnip").jump(-1) end, mode = { "i", "s" } },
},
},
{
"garymjr/nvim-snippets",
enabled = false,
},
}