|
local status_ok, lsp_installer = pcall(require, "nvim-lsp-installer")
|
|
if not status_ok then return end
|
|
lsp_installer.setup(astronvim.user_plugin_opts("plugins.nvim-lsp-installer", {
|
|
ui = {
|
|
icons = {
|
|
server_installed = "✓",
|
|
server_uninstalled = "✗",
|
|
server_pending = "⟳",
|
|
},
|
|
},
|
|
}))
|