We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a103c commit 0c045bbCopy full SHA for 0c045bb
README.md
@@ -1,18 +1,19 @@
1
# github_nvim
2
3
+A neovim plugin to manage github repos. It uses github command line tool (gh) to manage github repos
4
+so make sure you have gh installed and authorized.
5
-## Usage
6
7
+## Usage
8
-```lua
9
10
github_nvim = require("github_nvim")
11
github_nvim.setup({})
12
require('telescope').load_extension('github_repos')
13
14
vim.keymap.set("n", "<leader>ghr", function()
15
vim.cmd("Telescope github_repos")
-end, { desc = "List github repos", buffer = bufnr })
16
+end, { desc = "List github repos(for clone or open)", buffer = bufnr })
17
18
vim.keymap.set("n", "<leader>ghc", function()
19
require("github_nvim").clone()
0 commit comments