feat(neovim): Create MasonInstallAll command to install applications

not available through OS package and brew
This commit is contained in:
Pratik Tripathy
2025-10-13 19:39:18 +05:30
parent cbb80fd205
commit d9ae73d437

View File

@@ -25,3 +25,8 @@ vim.api.nvim_create_autocmd("TextYankPost", {
})
end,
})
-- New command: MasonInstallAll
vim.api.nvim_create_user_command("MasonInstallAll", function()
vim.cmd("MasonInstall codelldb css-lsp docker-compose-language-service html-lsp json-lsp sqlls")
end, {})