mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-14 11:45:25 +00:00
9 lines
148 B
Lua
9 lines
148 B
Lua
|
local status_ok, _ = pcall(require, "lspconfig")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
require "user.lsp.mason"
|
||
|
require("user.lsp.handlers").setup()
|
||
|
|