blob: 0b8db93be1280a93746aef1d2e1ec5a6a93ebdff (
plain)
1
2
3
4
5
6
7
8
9
|
-- Loads the LSP module.
local status_ok, _ = pcall(require, "lspconfig")
if not status_ok then
return
end
require("plugins.lsp.lsp-installer")
require("plugins.lsp.handlers").setup()
|