UPDATED init.lua to ADD check that makes sure 'rust-analyzer' and 'codelldb' are installed.

This commit is contained in:
Nikolas (Daniel) Vincenti 2025-04-26 12:12:52 +02:00
parent ee6c4368ae
commit 7a9b92823c
1 changed files with 2 additions and 0 deletions

View File

@ -735,6 +735,8 @@ require('lazy').setup({
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'stylua', -- Used to format Lua code
'rust-analyzer', -- Rust LSP
'codelldb', -- Debugger
})
require('mason-tool-installer').setup { ensure_installed = ensure_installed }