add neogit

This commit is contained in:
Aditya 2024-03-04 19:39:31 +05:30
parent e673c475a3
commit 76c7468f5a
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
2 changed files with 14 additions and 0 deletions

View file

@ -12,6 +12,7 @@
./git/diffview.nix
./git/gitsigns.nix
./git/lazygit.nix
./git/neogit.nix
./dap/dap.nix

13
config/git/neogit.nix Normal file
View file

@ -0,0 +1,13 @@
{
plugins.neogit = {
enable = true;
disableBuiltinNotifications = true;
};
keymaps = [
{
mode = "n";
key = "<leader>gg";
action = "<cmd>Neogit<cr>";
}
];
}