mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-15 03:21:13 +00:00
9 lines
183 B
Lua
9 lines
183 B
Lua
|
local status_ok, _ = pcall(require, "lspconfig")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
require("user.lsp.lsp-installer")
|
||
|
require("user.lsp.handlers").setup()
|
||
|
require("user.lsp.null-ls")
|