add option for packerInit | fix (#715)
This commit is contained in:
parent
ea6f2a1490
commit
71b710b35b
|
@ -72,6 +72,9 @@ M.plugins = {
|
||||||
autopairs = true,
|
autopairs = true,
|
||||||
},
|
},
|
||||||
options = {
|
options = {
|
||||||
|
packer = {
|
||||||
|
init_file = "plugins.packerInit",
|
||||||
|
},
|
||||||
autopairs = { loadAfter = "nvim-cmp" },
|
autopairs = { loadAfter = "nvim-cmp" },
|
||||||
lspconfig = {
|
lspconfig = {
|
||||||
setup_lspconf = "", -- path of file containing setups of different lsps
|
setup_lspconf = "", -- path of file containing setups of different lsps
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
local present, packer = pcall(require, "plugins.packerInit")
|
local plugin_settings = require("core.utils").load_config().plugins
|
||||||
|
local present, packer = pcall(require, plugin_settings.options.packer.init_file)
|
||||||
|
|
||||||
if not present then
|
if not present then
|
||||||
return false
|
return false
|
||||||
|
@ -7,7 +8,6 @@ end
|
||||||
local use = packer.use
|
local use = packer.use
|
||||||
|
|
||||||
return packer.startup(function()
|
return packer.startup(function()
|
||||||
local plugin_settings = require("core.utils").load_config().plugins
|
|
||||||
local override_req = require("core.utils").override_req
|
local override_req = require("core.utils").override_req
|
||||||
|
|
||||||
-- this is arranged on the basis of when a plugin starts
|
-- this is arranged on the basis of when a plugin starts
|
||||||
|
|
Loading…
Reference in New Issue