-
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(git): add neogit * Update lua/astrocommunity/git/neogit/neogit.lua Co-authored-by: Micah Halter <[email protected]> * Update lua/astrocommunity/git/neogit/neogit.lua Co-authored-by: Micah Halter <[email protected]> --------- Co-authored-by: Micah Halter <[email protected]>
- Loading branch information
1 parent
bbb34c5
commit 512dc00
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# neogit | ||
|
||
**Repository:** https://github.com/TimUntersberger/neogit | ||
|
||
A work-in-progress Magit clone for Neovim that is geared toward the Vim philosophy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
return { | ||
{ | ||
"TimUntersberger/neogit", | ||
dependencies = { | ||
{ "nvim-lua/plenary.nvim" }, | ||
}, | ||
event = "User AstroGitFile", | ||
keys = { | ||
{ "<leader>gn", desc = "Neogit", mode = { "n" } }, | ||
{ "<leader>gnt", "<cmd>Neogit<CR>", desc = "Open Neogit Tab Page" }, | ||
{ "<leader>gnc", "<cmd>Neogit commit<CR>", desc = "Open Neogit Commit Page" }, | ||
{ "<leader>gnd", ":Neogit cwd=", desc = "Open Neogit Override CWD" }, | ||
{ "<leader>gnk", ":Neogit kind=", desc = "Open Neogit Override Kind" }, | ||
}, | ||
}, | ||
} |