From 3c8d5d9af322b7f8e276e6012f40d00c5440208e Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Sat, 4 Jun 2022 03:45:45 -0400 Subject: [PATCH] minor edits. --- lua/user/keymaps.lua | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index f0d4e1f..13ad64c 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -139,7 +139,7 @@ keymap("i", "jk", "", opts) -- ################# -- # TAB keymaps: # -- ################# - keymap("n", "tn", ":tabnew ", opts) -- New-tab + keymap("n", "tn", ":tabnew ", opts) -- New-tab keymap("n", "bt", "gT", opts) -- Backward-tab(s) keymap("n", "ft", "gt", opts) -- Forward-tab(s) keymap("n", "tc", ":tabclose", opts) -- Close-tab @@ -157,13 +157,6 @@ keymap("i", "jk", "", opts) keymap("n", "sp", ":split", opts) -- Splits current view horizontally. keymap("n", "vp", ":vsplit", opts) -- Splits current view Vertically. --- ################################################## --- ## I'm mapping vc to reload the .vimrc, # --- ## without closing and re-opening he vim config. # --- ################################################## --- keymap("n", "vc", ":source ~/.config/nvim/init.lua :nohl ", opts) --- TODO attempt to put this in vim.cmd later. - -- Terminal -- -- Better terminal navigation... ??? -- This is the ONLY block I am not sure if I want to include in my config,