📝 Adjusted scroll set and updated nvim notes/indent
This commit is contained in:
parent
ec24430128
commit
649ddde164
2 changed files with 5 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ vim.opt.incsearch = true
|
||||||
|
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
vim.opt.scrolloff = 8
|
vim.opt.scrolloff = 18
|
||||||
vim.opt.signcolumn = "yes"
|
vim.opt.signcolumn = "yes"
|
||||||
-- vim.opt.isfname:append("@-@")
|
-- vim.opt.isfname:append("@-@")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,10 @@ ctrl u -page up
|
||||||
ctrl d - page down
|
ctrl d - page down
|
||||||
u - undoes last change (can be used with prepended numbers depending on how many steps you want to undo)
|
u - undoes last change (can be used with prepended numbers depending on how many steps you want to undo)
|
||||||
ctrl + r - reverts changes over after unintentional undoing (undoes the last undo commands, also can be prepended by a number)
|
ctrl + r - reverts changes over after unintentional undoing (undoes the last undo commands, also can be prepended by a number)
|
||||||
|
>> - indent a single line
|
||||||
|
<< - unindent a single line
|
||||||
|
4>> - indent current and 3 following lines
|
||||||
|
4<< - unindent current and 3 following lines
|
||||||
|
|
||||||
/ - forwards slash searches for the word/term you wish to jump to, just press enter once it is highlighted
|
/ - forwards slash searches for the word/term you wish to jump to, just press enter once it is highlighted
|
||||||
? - question mark searches for the word/term you wish to jump to, just press enter once it is highlighted
|
? - question mark searches for the word/term you wish to jump to, just press enter once it is highlighted
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue