From a046d7c6e92371cf06c8e2e2b0e18cb456f98972 Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Fri, 29 Dec 2023 15:57:52 +0100 Subject: [PATCH] Neogit keybind --- .config/nvim/lua/keybinds/plugin.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/nvim/lua/keybinds/plugin.lua b/.config/nvim/lua/keybinds/plugin.lua index a99cf22e..65332204 100644 --- a/.config/nvim/lua/keybinds/plugin.lua +++ b/.config/nvim/lua/keybinds/plugin.lua @@ -52,5 +52,10 @@ map('n', 'Z', " lua require('zen-mode').toggle({})", { desc = "Toggle zen mode" }) +map('n', 'G', " Neogit", { + noremap = true, + desc = "Open Neogit" +}) + vim.keymap.set("n", "", function() toggle_telescope(harpoon:list()) end, { desc = "Open harpoon window" })