feat(util): octo.nvim extension fixes #2276

This commit is contained in:
Andreas Gerlach 2023-12-31 14:55:10 +01:00
parent 879e29504d
commit 6a6a65fe3c
No known key found for this signature in database
GPG key ID: 4DE630969786BD19

View file

@ -0,0 +1,25 @@
return {
-- Ensure GH tool is installed
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "gh" })
end,
},
{
"pwntester/octo.nvim",
cmd = "Octo",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
"nvim-tree/nvim-web-devicons",
},
opts = {
picker = "telescope",
}
},
}