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

@ -21,14 +21,11 @@ return {
highlight_grey = "LineNr",
},
},
config = function ()
require("nvim-autopairs").setup()
-- require ("nvim-autopairs.completion.cmp")
-- local cmp_status_ok, cmp = pcall(require, "cmp")
-- if not cmp_status_ok then
-- return
-- end
-- cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done { map_char = { tex = "" } })
config = function(_, opts)
require("nvim-autopairs").setup(opts)
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
local cmp = require "cmp"
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done { map_char = { tex = "" } })
end
}

View File

@ -1,5 +1,7 @@
return {
"petertriho/nvim-scrollbar",
event = "VeryLazy",
config = true
config = function (_, opts)
require("scrollbar").setup(opts)
end
}

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",
}
}
}