mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
14 lines
311 B
Lua
14 lines
311 B
Lua
-- Edit and review GitHub issues and pull requests
|
|
-- https://github.com/pwntester/octo.nvim
|
|
return {
|
|
"pwntester/octo.nvim",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-telescope/telescope.nvim",
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
config = function()
|
|
require("octo").setup()
|
|
end,
|
|
}
|