📝 Adjusted scroll set and updated nvim notes/indent

This commit is contained in:
z3rOR0ne 2023-02-02 05:51:04 -08:00
parent ec24430128
commit 649ddde164
2 changed files with 5 additions and 1 deletions

View file

@ -20,7 +20,7 @@ vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.opt.scrolloff = 18
vim.opt.signcolumn = "yes"
-- vim.opt.isfname:append("@-@")

View file

@ -45,6 +45,10 @@ ctrl u -page up
ctrl d - page down
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)
>> - 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
? - question mark searches for the word/term you wish to jump to, just press enter once it is highlighted