feat(config): nvim

This commit is contained in:
Anhgelus Morhtuuzh 2025-08-12 15:25:31 +02:00
parent ab93bfa16d
commit 3fa491d7a4
Signed by: anhgelus
GPG key ID: 617773CACE89052C
10 changed files with 291 additions and 0 deletions

View file

@ -0,0 +1,21 @@
return {
{
"neovim/nvim-lspconfig",
config = function()
local lspconfig = require("lspconfig")
lspconfig.pylsp.setup({})
end,
},
{ "mason-org/mason.nvim", opts = {} },
{
"mason-org/mason-lspconfig.nvim",
dependencies = {
"mason-org/mason.nvim",
"neovim/nvim-lspconfig",
},
opts = {
ensure_installed = { "pylsp", "elixirls" },
},
},
}