initial commit

This commit is contained in:
THEON-1
2025-10-10 12:19:28 +02:00
commit d2e8cd40f1
23 changed files with 499 additions and 0 deletions

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

@@ -0,0 +1,23 @@
return {
"mason-org/mason-lspconfig.nvim",
opts = {
automatic_enable = true,
},
dependencies = {
{
"mason-org/mason.nvim",
opts = {
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = "",
},
},
},
lazy = false,
},
"neovim/nvim-lspconfig",
},
}