nvim: add fugitive keymaps

This commit is contained in:
Johannes Rothe 2024-12-22 16:06:37 +01:00
parent 2ff2ab05f2
commit ecaab24ad6

View File

@ -33,6 +33,22 @@
key = "<leader>rm"; key = "<leader>rm";
action = "<cmd>RenderMarkdown toggle<CR>"; action = "<cmd>RenderMarkdown toggle<CR>";
} }
{
key = "<leader>g";
action = "<cmd>Git<CR>";
}
{
key = "<leader>gp";
action = "<cmd>Git push<CR>";
}
{
key = "<leader>gl";
action = "<cmd>Git log<CR>";
}
{
key = "<leader>gb";
action = "<cmd>Git blame<CR>";
}
]; ];
opts = { opts = {
colorcolumn = "88"; colorcolumn = "88";