🚧 Added shift+n for toggle relative number

This commit is contained in:
z3rOR0ne 2022-10-09 12:26:22 -07:00
parent 9b7bc710c5
commit f4b8cb1afb
2 changed files with 6 additions and 1 deletions

View file

@ -45,6 +45,10 @@ keymap('n', '<s-m>', '<c-w>:MarkdownPreview<CR>', {})
vim.cmd[[nmap <C-j> <C-Down>]]
vim.cmd[[nmap <C-k> <C-Up>]]
-- Toggle relativenumber
vim.cmd[[nmap <s-n> :set relativenumber! number<cr>]]
-- Escape Insert Mode with ii
keymap('i', 'ii', '<Esc>', {})