dotfiles/.config/nvim/lua/plugins/mason.lua

17 lines
574 B
Lua
Raw Normal View History

2024-01-17 13:01:32 +01:00
return {
'williamboman/mason-lspconfig.nvim',
dependencies = {
{'williamboman/mason.nvim', opts = {
ui = {
icons = {
package_installed = ""
}
}
}},
'neovim/nvim-lspconfig'
},
opts = {
2024-02-26 23:25:15 +01:00
ensure_installed = { "pyright", "texlab", "clangd", "bashls", "cmake", "jsonls", "tsserver", "vuels", "dockerls", "vimls", "html", "yamlls", "cssls", "lua_ls", "ltex", "gopls", "rust_analyzer", "jdtls", "emmet_ls", "ruff_lsp", "csharp_ls", "typst_lsp" },
2024-01-17 13:01:32 +01:00
}
}