diff --git a/lua/lazyvim/plugins/extras/util/octo.lua b/lua/lazyvim/plugins/extras/util/octo.lua new file mode 100644 index 00000000..68fcfd4b --- /dev/null +++ b/lua/lazyvim/plugins/extras/util/octo.lua @@ -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", + } + }, + +}