From e80e2cb1cceafe9b455d401d96b5183495abdb02 Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Fri, 3 Jun 2022 21:21:38 -0400 Subject: [PATCH] turned silent keymaps off, and top = turn-off-paste. --- lua/user/keymaps.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index 024d491..9c38082 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -1,4 +1,6 @@ -local opts = { noremap = true, silent = true } +-- changed silent to false, b/c for now I have the space for it, +-- and prefer verbosity! +local opts = { noremap = true, silent = false } -- Terminal options for. local term_opts = { silent = true } @@ -68,6 +70,11 @@ keymap("x", "K", ":move '<-2gv-gv", opts) keymap("x", "", ":move '>+1gv-gv", opts) keymap("x", "", ":move '<-2gv-gv", opts) +--"############################ +--"# leader-mappings section: # +--"############################ + keymap( "n", "top", ":set paste", opts) -- Turn special pasting on ONLY when needed. + -- Terminal -- -- Better terminal navigation... ??? -- This is the ONLY block I am not sure if I want to include in my config,