|
|
|
@ -14,7 +14,7 @@ keymap("", "<Space>", "<Nop>", opts)
|
|
|
|
|
vim.g.mapleader = " "
|
|
|
|
|
vim.g.maplocalleader = " "
|
|
|
|
|
|
|
|
|
|
-- Modes
|
|
|
|
|
-- Modes:
|
|
|
|
|
-- normal_mode = "n",
|
|
|
|
|
-- insert_mode = "i",
|
|
|
|
|
-- visual_mode = "v",
|
|
|
|
@ -81,6 +81,22 @@ keymap("x", "<A-k>", ":move '<-2<CR>gv-gv", opts)
|
|
|
|
|
-- "################################################################
|
|
|
|
|
keymap("n", "<leader>nh", ":nohl<CR>", opts)
|
|
|
|
|
|
|
|
|
|
-- "##################################################################
|
|
|
|
|
-- "# Map nr to toggle off the relative line numbers in Normal mode. #
|
|
|
|
|
-- "##################################################################
|
|
|
|
|
keymap("n", "<leader>nr", ":set nornu<CR>", opts)
|
|
|
|
|
|
|
|
|
|
-- "#########################################################
|
|
|
|
|
-- "# Map n, to toggle regular line-numberings on, #
|
|
|
|
|
-- "# to check for which specific line of the file your on. #
|
|
|
|
|
-- "#########################################################
|
|
|
|
|
keymap("n", "<leader>nn", ":set nonu<CR>", opts)
|
|
|
|
|
|
|
|
|
|
-- "##########################################################################
|
|
|
|
|
-- "#I'm mapping comma{,} + lower-case 'l' to disable special char listings. #
|
|
|
|
|
-- "##########################################################################
|
|
|
|
|
keymap("n", "<leader>nl", ":set nolist<CR>", opts)
|
|
|
|
|
|
|
|
|
|
-- Terminal --
|
|
|
|
|
-- Better terminal navigation... ???
|
|
|
|
|
-- This is the ONLY block I am not sure if I want to include in my config,
|
|
|
|
|