nvim/lua/lsp/installer.lua
2023-01-23 14:47:01 +01:00

9 lines
195 B
Lua

local status, lsp_installer = pcall(require,"nvim-lsp-installer")
if (not status) then return end
lsp_installer.on_server_ready(function(server)
local opts = {}
server:setup(opts)
end)