load lspconfig after cmp | fix (#740)
if cmp isnt lazy loaded then load lspconfig after it so cmp-nvim-lsp capabilities can be used by lspconfig
This commit is contained in:
parent
ddd13df5af
commit
4511b84d6c
@ -1,6 +1,13 @@
|
|||||||
local plugin_settings = require("core.utils").load_config().plugins
|
local plugin_settings = require("core.utils").load_config().plugins
|
||||||
local present, packer = pcall(require, plugin_settings.options.packer.init_file)
|
local present, packer = pcall(require, plugin_settings.options.packer.init_file)
|
||||||
|
|
||||||
|
-- if cmp isnt lazy loaded -> load lspconfig after it
|
||||||
|
local loadAfter_cmp = false
|
||||||
|
|
||||||
|
if not plugin_settings.options.cmp.lazy_load then
|
||||||
|
loadAfter_cmp = "cmp-nvim-lsp"
|
||||||
|
end
|
||||||
|
|
||||||
if not present then
|
if not present then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
@ -89,6 +96,7 @@ return packer.startup(function()
|
|||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
module = "lspconfig",
|
module = "lspconfig",
|
||||||
opt = true,
|
opt = true,
|
||||||
|
after = loadAfter_cmp,
|
||||||
setup = function()
|
setup = function()
|
||||||
require("core.utils").packer_lazy_load "nvim-lspconfig"
|
require("core.utils").packer_lazy_load "nvim-lspconfig"
|
||||||
-- reload the current file so lsp actually starts for it
|
-- reload the current file so lsp actually starts for it
|
||||||
|
Loading…
Reference in New Issue
Block a user