|
|
@ -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.
|
|
|
|
-- Terminal options for.
|
|
|
|
local term_opts = { silent = true }
|
|
|
|
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-j>", ":move '>+1<CR>gv-gv", opts)
|
|
|
|
keymap("x", "<A-k>", ":move '<-2<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 --
|
|
|
|
-- Terminal --
|
|
|
|
-- Better terminal navigation... ???
|
|
|
|
-- Better terminal navigation... ???
|
|
|
|
-- This is the ONLY block I am not sure if I want to include in my config,
|
|
|
|
-- This is the ONLY block I am not sure if I want to include in my config,
|
|
|
|