diff options
| author | aktersnurra <gustaf@gustafrydholm.xyz> | 2026-04-18 00:52:28 +0200 |
|---|---|---|
| committer | aktersnurra <gustaf@gustafrydholm.xyz> | 2026-04-20 22:58:39 +0200 |
| commit | 11d50dc8934a5b9e9be73d0445789e005843dfc2 (patch) | |
| tree | c87c84806ab5fcd48f191c765650b91e1e52ce6f /fnl/plugins/octo.fnl | |
| parent | 0f3690bd084ba3b47b4c356089b03a6df763572c (diff) | |
Diffstat (limited to 'fnl/plugins/octo.fnl')
| -rw-r--r-- | fnl/plugins/octo.fnl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fnl/plugins/octo.fnl b/fnl/plugins/octo.fnl new file mode 100644 index 0000000..b97afe6 --- /dev/null +++ b/fnl/plugins/octo.fnl @@ -0,0 +1,15 @@ +;; GitHub PR and issue management. + +{1 :pwntester/octo.nvim + :dependencies [:nvim-lua/plenary.nvim + :nvim-telescope/telescope.nvim + :nvim-tree/nvim-web-devicons] + :cmd :Octo + :keys [{1 :<leader>Ol 2 "<cmd>Octo pr list<cr>" :desc "List PRs"} + {1 :<leader>Os 2 "<cmd>Octo review start<cr>" :desc "Review Start"} + {1 :<leader>Or 2 "<cmd>Octo review resume<cr>" :desc "Review Resume"} + {1 :<leader>Od 2 "<cmd>Octo review discard<cr>" :desc "Review Discard"} + {1 :<leader>Om 2 "<cmd>Octo review submit<cr>" :desc "Review Submit"} + {1 :<leader>Oc 2 "<cmd>Octo review comments<cr>" :desc "Review Comments"} + {1 :<leader>Oi 2 "<cmd>Octo issue list<cr>" :desc "List Issues"}] + :opts {}} |