mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(util): octo.nvim extension fixes #2276
This commit is contained in:
parent
879e29504d
commit
6a6a65fe3c
1 changed files with 25 additions and 0 deletions
25
lua/lazyvim/plugins/extras/util/octo.lua
Normal file
25
lua/lazyvim/plugins/extras/util/octo.lua
Normal 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",
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue