nv/config/git/neogit.nix

17 lines
271 B
Nix
Raw Normal View History

2024-03-04 14:09:31 +00:00
{
plugins.neogit = {
enable = true;
disableBuiltinNotifications = true;
};
keymaps = [
{
mode = "n";
key = "<leader>gg";
2024-03-10 07:13:54 +00:00
action = "<cmd>Neogit kind=floating<cr>";
options = {
desc = "Toggle Neogit";
};
2024-03-04 14:09:31 +00:00
}
];
}