diff options
| author | kylo252 <[email protected]> | 2022-08-09 10:41:17 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-08-09 10:41:17 +0200 | 
| commit | eefde00ae80f91ecf88a93e869e346fdd04c7ba4 (patch) | |
| tree | 873b8fc0248938ab060a1482f88c2d6d742ce61b /lua/lvim/lsp/config.lua | |
| parent | d53b3743f2a259dbf90446216194ade2bb224ab7 (diff) | |
refactor!: migrate to mason.nvim (#2880)
Diffstat (limited to 'lua/lvim/lsp/config.lua')
| -rw-r--r-- | lua/lvim/lsp/config.lua | 13 | 
1 files changed, 5 insertions, 8 deletions
| diff --git a/lua/lvim/lsp/config.lua b/lua/lvim/lsp/config.lua index e3cd503b..41290787 100644 --- a/lua/lvim/lsp/config.lua +++ b/lua/lvim/lsp/config.lua @@ -88,7 +88,6 @@ return {    },    on_attach_callback = nil,    on_init_callback = nil, -  automatic_servers_installation = true,    automatic_configuration = {      ---@usage list of servers that the automatic installer will skip      skipped_servers = skipped_servers, @@ -131,12 +130,8 @@ return {    installer = {      setup = {        ensure_installed = {}, -      ui = { -        icons = { -          server_installed = "✓", -          server_pending = "", -          server_uninstalled = "✗", -        }, +      automatic_installation = { +        exclude = {},        },      },    }, @@ -153,6 +148,8 @@ return {      setup = {},      config = {},    }, -  ---@deprecated use automatic_configuration.skipped_servers instead +  ---@deprecated use lvim.lsp.automatic_configuration.skipped_servers instead    override = {}, +  ---@deprecated use lvim.lsp.installer.setup.automatic_installation instead +  automatic_servers_installation = nil,  } | 
