Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/user/lsp/init.lua

10 lines
203 B
Lua
Raw Normal View History

2022-01-21 08:22:02 +00:00
local status_ok, _ = pcall(require, "lspconfig")
if not status_ok then
return
end
require("user.lsp.installer")
require("user.lsp.nlsp")
require("user.lsp.nullls")
require("user.lsp.handlers").setup()