Further clean up nvim keybindings

This commit is contained in:
Yan Lin 2025-08-14 23:21:35 +09:00
parent 862e7096f4
commit c5207ec301
2 changed files with 0 additions and 33 deletions

View file

@ -236,13 +236,6 @@ blog = {
| `<C-q>` | Send results to quickfix list |
| `<Esc>` | Close Telescope |
**Git Operations:**
| Key | Action |
|-----|--------|
| `<Space>gs` | Git status |
| `<Space>gd` | Git diff |
| `<Space>gc` | Git commit (vim-fugitive) |
| `<Space>gp` | Git push |
**Other:**
| Key | Action |

View file

@ -196,32 +196,6 @@
options = { desc = "Show current file in Finder"; };
}
# Git keymaps (vim-fugitive)
{
mode = "n";
key = "<leader>gs";
action = ":Git<CR>";
options = { desc = "Git status"; };
}
{
mode = "n";
key = "<leader>gd";
action = ":Git diff<CR>";
options = { desc = "Git diff"; };
}
{
mode = "n";
key = "<leader>gc";
action = ":Git commit<CR>";
options = { desc = "Git commit"; };
}
{
mode = "n";
key = "<leader>gp";
action = ":Git push<CR>";
options = { desc = "Git push"; };
}
# Markdown rendering
{
mode = "n";