summaryrefslogtreecommitdiff
path: root/lua/config/lsp/init.lua
blob: 7977351664e42b5b575febca96fc9e64bb728126 (plain)
1
2
3
4
5
6
7
8
9
10
-- Loads the LSP module.

local status_ok, _ = pcall(require, "lspconfig")
if not status_ok then
	return
end

require("config.lsp.lsp-installer")
require("config.lsp.handlers").setup()
require("config.lsp.null-ls")