nvim/lua/lsp/installer.lua

9 lines
195 B
Lua
Raw Permalink Normal View History

2023-01-23 13:47:01 +00:00
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)