From c5207ec301470f221b8c99a12415acae3f67a9a7 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Thu, 14 Aug 2025 23:21:35 +0900 Subject: [PATCH] Further clean up nvim keybindings --- README.md | 7 ------- modules/nvim.nix | 26 -------------------------- 2 files changed, 33 deletions(-) diff --git a/README.md b/README.md index 82cab4b..0120899 100644 --- a/README.md +++ b/README.md @@ -236,13 +236,6 @@ blog = { | `` | Send results to quickfix list | | `` | Close Telescope | -**Git Operations:** -| Key | Action | -|-----|--------| -| `gs` | Git status | -| `gd` | Git diff | -| `gc` | Git commit (vim-fugitive) | -| `gp` | Git push | **Other:** | Key | Action | diff --git a/modules/nvim.nix b/modules/nvim.nix index d4fb303..b70ba56 100644 --- a/modules/nvim.nix +++ b/modules/nvim.nix @@ -196,32 +196,6 @@ options = { desc = "Show current file in Finder"; }; } - # Git keymaps (vim-fugitive) - { - mode = "n"; - key = "gs"; - action = ":Git"; - options = { desc = "Git status"; }; - } - { - mode = "n"; - key = "gd"; - action = ":Git diff"; - options = { desc = "Git diff"; }; - } - { - mode = "n"; - key = "gc"; - action = ":Git commit"; - options = { desc = "Git commit"; }; - } - { - mode = "n"; - key = "gp"; - action = ":Git push"; - options = { desc = "Git push"; }; - } - # Markdown rendering { mode = "n";