Defeat misbehaving mason slopware
This commit is contained in:
parent
13701713b3
commit
4166a79b7d
1 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,7 @@ return { -- LSP Configuration & Plugins
|
|||
dependencies = {
|
||||
-- Automatically install LSPs and related tools to stdpath for Neovim
|
||||
{ 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants
|
||||
'williamboman/mason-lspconfig.nvim',
|
||||
{ 'williamboman/mason-lspconfig.nvim' },
|
||||
'WhoIsSethDaniel/mason-tool-installer.nvim',
|
||||
|
||||
-- Useful status updates for LSP.
|
||||
|
@ -216,6 +216,8 @@ return { -- LSP Configuration & Plugins
|
|||
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
|
||||
|
||||
require('mason-lspconfig').setup {
|
||||
ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer)
|
||||
automatic_installation = false,
|
||||
handlers = {
|
||||
function(server_name)
|
||||
local server = servers[server_name] or {}
|
||||
|
|
Loading…
Add table
Reference in a new issue