fix missing opts for plugin initialization

This commit is contained in:
2025-07-15 16:57:41 +05:00
parent 386d50d7ce
commit 145bbd1996
3 changed files with 17 additions and 16 deletions

View File

@ -1,9 +1,11 @@
return {
{ "L3MON4D3/LuaSnip", event = "VeryLazy" }, --snippet engine
{ "rafamadriz/friendly-snippets", event = "VeryLazy" }, -- a bunch of snippets to use
{
"dsznajder/vscode-es7-javascript-react-snippets",
run = "yarn install --frozen-lockfile && yarn compile",
event = "VeryLazy"
},
"L3MON4D3/LuaSnip",
event = "VeryLazy",
config = true,
dependencies = {
"rafamadriz/friendly-snippets",
-- "dsznajder/vscode-es7-javascript-react-snippets",
}
}
}