Files
absolute-vim/lua/absolute/after/mason.lua
David Ibia 68aba67294 chore(jedi.lua): disable popup on dot in jedi plugin configuration
chore(jedi.lua): remove unused keybindings in jedi plugin configuration
chore(lsp-config.lua): remove pyright language server configuration
feat(lsp-config.lua): add jedi_completion plugin configuration to pylsp language server
feat(lsp-config.lua): add jedi_language_server configuration
chore(mason.lua): remove pyright language server from mason plugin configuration
feat(mason.lua): add jedi_language_server to mason plugin configuration
chore(poet-v.lua): add autocommand to activate virtualenv when entering a buffer with .venv or .py file
2024-01-03 19:05:06 +01:00

23 lines
471 B
Lua

require("mason").setup();
require("mason-lspconfig").setup({
ensure_installed = {
"tsserver",
"eslint",
"rust_analyzer",
"html",
"emmet_ls",
"lua_ls",
"tailwindcss",
"svelte",
"cssls",
"jedi_language_server",
},
automatic_installation = true,
})
require("mason-nvim-dap").setup({
ensure_installed = {
"debugpy", -- python
},
automatic_installation = true,
})