Fix loading of lsp files on first load before install

This commit is contained in:
ViViDboarder 2021-12-16 20:51:46 -08:00
parent 718dcc79e6
commit d004dbee79
1 changed files with 17 additions and 16 deletions

View File

@ -137,7 +137,7 @@ local function merged_capabilities()
end end
function M.config_lsp() function M.config_lsp()
local lsp_config = require("lspconfig") utils.try_require("lspconfig", function(lsp_config)
local capabilities = merged_capabilities() local capabilities = merged_capabilities()
-- Configure each server -- Configure each server
@ -155,6 +155,7 @@ function M.config_lsp()
}, },
}, },
}) })
end)
end end
function M.config_lsp_saga() function M.config_lsp_saga()