mapping for toggling line number

This commit is contained in:
siduck76 2021-04-08 11:12:23 +05:30
parent 14f5e28374
commit fe82771037
2 changed files with 5 additions and 1 deletions

View File

@ -159,6 +159,7 @@ I'd install it first and add its setup line :
- <kbd> Ctrl </kbd> <kbd> l </kbd> Open terminal vertically over right
- <kbd> Ctrl </kbd> <kbd> x </kbd> Open terminal horizontally below the current window
- <kbd> Ctrl </kbd> <kbd> n </kbd> toggle neovim tree
- <kbd> Shift </kbd> <kbd> n </kbd> toggle line number
- <kbd> Ctrl </kbd> <kbd> a </kbd> copies everything in the current file
- select any text + <kbd> y </kbd> copies the selected text
- leader + <kbd> f </kbd> <kbd> b </kbd> open all buffers , with telescope

View File

@ -15,3 +15,6 @@ map("n", "<C-x>", [[<Cmd> split term://bash | resize 10 <CR>]], opt) -- open ter
-- COPY EVERYTHING --
map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)
-- toggle line number
map("n", "<S-n>", [[ <Cmd> set nu! <CR>]], opt)