1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-07-09 07:33:52 +00:00
dotfiles/.config/nvim/lua/user/lsp/init.lua

9 lines
175 B
Lua

local status_ok, _ = pcall(require, "lspconfig")
if not status_ok then
return
end
require("user.lsp.mason")
require("user.lsp.handlers").setup()
require("user.lsp.null-ls")