kickstart.nvim/lua/custom/lsp/init.lua

9 lines
144 B
Lua
Raw Normal View History

2023-08-01 16:03:51 +10:00
local status_ok, _ = pcall(require, "lspconfig")
if not status_ok then
return
end
require "custom.lsp.mason"
2023-08-31 14:29:09 +10:00
require "custom.lsp.null-ls"