From 103cef85dd5e28974136f803fdfdd8abc187ad07 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 4 Sep 2023 21:46:22 -0500 Subject: [PATCH] refactor(nvim): replace gh.nvim with Octo --- .../nvim/lua/plugins/configs/github.lua | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/dots/.config/nvim/lua/plugins/configs/github.lua b/dots/.config/nvim/lua/plugins/configs/github.lua index adf70863..369a91a0 100644 --- a/dots/.config/nvim/lua/plugins/configs/github.lua +++ b/dots/.config/nvim/lua/plugins/configs/github.lua @@ -1,13 +1,12 @@ return { { - "ldelossa/gh.nvim", - cmd = { "GH" }, - dependencies = { "ldelossa/litee.nvim" }, - config = function() - require("litee.lib").setup() - require("litee.gh").setup({ - refresh_interval = 60000, - }) - end, - }, + 'pwntester/octo.nvim', + cmd = "Octo", + dependencies = { + 'nvim-lua/plenary.nvim', + 'nvim-telescope/telescope.nvim', + 'nvim-tree/nvim-web-devicons', + }, + config = true + } }