mason-tool-installer.nvim icon indicating copy to clipboard operation
mason-tool-installer.nvim copied to clipboard

Install and upgrade third party tools automatically

Results 11 mason-tool-installer.nvim issues
Sort by recently updated
recently updated
newest added

I update my tools very frequently with some scripts. I think would be nice to have an event that the user could attach an action for when the installations/updating is...

Hey @WhoIsSethDaniel, Love the plugin thanks for mentioning it in the issue. I have since set it up to install all my required tools but unfortunately it seems to have...

As title. When I use mason itself, I can get error message for why I failed to install some package. But not for this plugin.

`MasonToolsInstallSync` and `MasonToolsUpdateSync` are added for installation from Neovim headless mode. When I try to install LSPs managed by Mason in command line, the installation was failed because `MasonToolsInstall` executes...

I currently have mason setup to prefer default lsp configuration by musing mason-lspconfig. This allows me to keep the lspconfig setup as close as possible to the vanilla nvim experience...

Minor QoL thing: When you run `:MasonToolsUpdate` and there is no update available, there is no indication or response to the user. It would be a better UX if you'd...

Due to mason-tool-installer not using concurrent jobs/threads to make the checks and updates, I see a great deal of lag on the main Neovim thread every time the updates take...

I am trying to separate configuration for each language to its own file. I am using lazy.nvim for this. I can easily extends `treesitter` and `lspconfig` config as follows from...

```lua require('mason-tool-installer').setup({ ensure_installed = { { "gotests", version = "develop" }, -- go tests codegen } ``` Hi, code above returns "gotests: failed to install". I need to install gotests...

Hello! First of all, great plugin! I noticed an issue that arises from this plugin invoking require('mason-lspconfig') as soon as require('mason-tool-installer') is called, that could disrupt the flow of certain...