A Neovim plugin that serves as a wrapper for executing Azure CLI commands directly within the editor.
- Execute Azure CLI commands: Seamlessly run Azure CLI commands from within Neovim.
- Improved Workflow: Enhance productivity by accessing Azure CLI functionality directly in your editor.
Use lazy.nvim
for lazy loading of this plugin in your Neovim configuration.
Add the following line to your lazy.nvim
configuration file:
{
"dannicholls/azure-cli.nvim",
lazy = false,
dependencies = {
"MunifTanjim/nui.nvim",
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
},
},
Then, use the Lazy reload
command to reload your Neovim configuration.
TODO: Add usage instructions here.
You can add these keybinding to your whichkey
configuration:
M.AzureCli = {
n = {
["<leader>aa"] = { ":AzureCli<CR>", opts = { nowait = true } },
["<leader>ad"] = { ":AzureCliDefect<CR>", opts = { nowait = true } },
["<leader>ab"] = { ":AzureCliBugs<CR>", opts = { nowait = true } },
["<leader>as"] = { ":AzureCliUserStories<CR>", opts = { nowait = true } },
["<leader>at"] = { ":AzureCliTasks<CR>", opts = { nowait = true } },
["<leader>ai"] = { ":AzureCliIssues<CR>", opts = { nowait = true } },
},
}
Contributions are welcome! Please read the contribution guidelines before getting started.
This project is licensed under the MIT License.