ensure installed mason plugins

This commit is contained in:
Christoph J. Scherr 2023-09-15 11:48:34 +02:00
parent e7d87bc2a5
commit 25bc8c4364
1 changed files with 10 additions and 1 deletions

View File

@ -74,6 +74,9 @@ return {
}, },
}, },
}, },
texlab = {
}
}, },
-- you can do any additional lsp server setup here -- you can do any additional lsp server setup here
-- return true if you don't want this server to be setup with lspconfig -- return true if you don't want this server to be setup with lspconfig
@ -243,7 +246,13 @@ return {
build = ':MasonUpdate', build = ':MasonUpdate',
keys = { { '<leader>mm', '<cmd>Mason<cr>', desc = 'Mason' } }, keys = { { '<leader>mm', '<cmd>Mason<cr>', desc = 'Mason' } },
opts = { opts = {
ensure_installed = {}, ensure_installed = {
'rust-analyzer',
'clangd',
'pyright',
'bash-language-server',
'codelldb',
},
ui = { ui = {
border = 'rounded', border = 'rounded',
}, },