Add missing files

This commit is contained in:
Alexander Gehrke 2023-01-23 14:47:01 +01:00
parent 903b28d533
commit 5ee962ee3c
4 changed files with 56 additions and 0 deletions

8
lua/lsp/installer.lua Normal file
View file

@ -0,0 +1,8 @@
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)