Added <L>+nn/nr/nr, for no-num/no-rel-num/no-list.

pull/166/head
Kevin James Lausen 3 years ago
parent 8aed0f656a
commit 21ac8ff9b9

@ -14,7 +14,7 @@ keymap("", "<Space>", "<Nop>", opts)
vim.g.mapleader = " " vim.g.mapleader = " "
vim.g.maplocalleader = " " vim.g.maplocalleader = " "
-- Modes -- Modes:
-- normal_mode = "n", -- normal_mode = "n",
-- insert_mode = "i", -- insert_mode = "i",
-- visual_mode = "v", -- visual_mode = "v",
@ -81,6 +81,22 @@ keymap("x", "<A-k>", ":move '<-2<CR>gv-gv", opts)
-- "################################################################ -- "################################################################
keymap("n", "<leader>nh", ":nohl<CR>", 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 -- -- 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,

Loading…
Cancel
Save