From 35ae052fca5e40f88d2f5c1347f2d8f9b6aa0515 Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Fri, 3 Jun 2022 22:33:57 -0400 Subject: [PATCH] Added, re-source nvim, but I think it still needs vim.cmd fct wrapping tomorrow. --- lua/user/keymaps.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index 838e6c6..b38ae31 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -102,6 +102,12 @@ keymap("i", "jk", "", opts) -- "############################################################################## keymap("n", "cm", ":set nolist :set nornu :set nonu :set paste ", opts) +-- "################################################# +-- "# 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) + -- Terminal -- -- Better terminal navigation... ??? -- This is the ONLY block I am not sure if I want to include in my config,