turned silent keymaps off, and <leader>top = turn-off-paste.

pull/166/head
Kevin James Lausen 3 years ago
parent c07802b931
commit e80e2cb1cc

@ -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 '<-2<CR>gv-gv", opts)
keymap("x", "<A-j>", ":move '>+1<CR>gv-gv", opts)
keymap("x", "<A-k>", ":move '<-2<CR>gv-gv", opts)
--"############################
--"# leader-mappings section: #
--"############################
keymap( "n", "<leader>top", ":set paste<CR>", 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,

Loading…
Cancel
Save