From ab25754b029e74c8451799771c0c2475762761c6 Mon Sep 17 00:00:00 2001 From: c Date: Sat, 17 Dec 2022 17:30:02 -0600 Subject: [PATCH] keybind --- nvim/.config/nvim/lua/clint/keybindings.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nvim/.config/nvim/lua/clint/keybindings.lua b/nvim/.config/nvim/lua/clint/keybindings.lua index 1cd56a8..7112ded 100644 --- a/nvim/.config/nvim/lua/clint/keybindings.lua +++ b/nvim/.config/nvim/lua/clint/keybindings.lua @@ -40,9 +40,6 @@ keymap('n', 'd', ':Telescope diagnostics', default_ops) keymap('n', 'h', ':Telescope neoclip', default_ops) keymap('n', 'fb', ':Telescope file_browser hidden=true', default_ops) --- Buffers -keymap('n', 'b', ':JABSOpen', default_ops) - -- Shift up and down keymap("v", "J", ":m '>+1gv=gv", default_ops) keymap("v", "K", ":m '<-2gv=gv", default_ops) @@ -60,3 +57,6 @@ keymap("n", "Y", [["+Y]], default_ops) -- Replace the word the cursor is currently on keymap("n", "s", [[:%s/\<\>//gI]], default_ops) + +-- Git +keymap('n', 'gg', ':LazyGit', default_ops)