changed to astronvim

This commit is contained in:
2025-08-11 09:14:07 +01:00
parent 7040f7d16c
commit e3bd8537e2
29 changed files with 499 additions and 1704 deletions

27
lua/plugins/mason.lua Normal file
View File

@@ -0,0 +1,27 @@
---@type LazySpec
return {
-- use mason-tool-installer for automatically installing Mason packages
{
'WhoIsSethDaniel/mason-tool-installer.nvim',
-- overrides `require("mason-tool-installer").setup(...)`
opts = {
-- Make sure to use the names found in `:Mason`
ensure_installed = {
-- install language servers
'lua-language-server',
'gopls',
-- install formatters
'stylua',
'goimports',
-- install debuggers
-- 'debugpy',
-- "delve",
-- install any other package
'tree-sitter-cli',
},
},
},
}