diff options
Diffstat (limited to 'lua/lvim/lsp/config.lua')
| -rw-r--r-- | lua/lvim/lsp/config.lua | 14 | 
1 files changed, 5 insertions, 9 deletions
| diff --git a/lua/lvim/lsp/config.lua b/lua/lvim/lsp/config.lua index e3cd503b..2cd1bc6e 100644 --- a/lua/lvim/lsp/config.lua +++ b/lua/lvim/lsp/config.lua @@ -30,7 +30,6 @@ local skipped_servers = {    "sqlls",    "sqls",    "stylelint_lsp", -  "tailwindcss",    "tflint",    "svlangserver",    "verible", @@ -88,7 +87,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 +129,8 @@ return {    installer = {      setup = {        ensure_installed = {}, -      ui = { -        icons = { -          server_installed = "✓", -          server_pending = "", -          server_uninstalled = "✗", -        }, +      automatic_installation = { +        exclude = {},        },      },    }, @@ -153,6 +147,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,  } | 
