-
I'm trying to set up return {
{
"mason-org/mason-lspconfig.nvim",
dependencies = {
{
"mason-org/mason.nvim",
opts = {}
},
"neovim/nvim-lspconfig",
},
opts = {
ensure_installed = {
"jdtls",
"java-debug-adapter",
"java-test",
},
automatic_installation = true,
},
}
} When I open |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found the issue with my setup. I assumed that any tool categoy (LSP, DAP, Linter etc.) can be installed through |
Beta Was this translation helpful? Give feedback.
Found the issue with my setup. I assumed that any tool categoy (LSP, DAP, Linter etc.) can be installed through
ensure_installed
ofmason-lspconfig
plugin. However, as the name suggests, it's only used for lsp's. I usedWhoIsSethDaniel/mason-tool-installer.nvim
to install the other tools.