Skip to content

Instantly share code, notes, and snippets.

@netrunn3r
Created December 6, 2017 09:11
Show Gist options
  • Save netrunn3r/9c053244804b1e9b88ba5a7dfa58f767 to your computer and use it in GitHub Desktop.
Save netrunn3r/9c053244804b1e9b88ba5a7dfa58f767 to your computer and use it in GitHub Desktop.
VIM cheatsheet

Automatic indentation

autoindent - copy the indentation from the previous line, when starting a new line
smartindent - automatically inserts one extra level of indentation in some cases, and works for C-like files
cindent - more customizable, but also more strict when it comes to syntax
shiftwidth - amount of indentation used for one level in automatic indentation and affects what happens when you press >>, << or ==
tabstop - changes the width of the TAB character

Highlight

set hlsearch - set highlight when searching
:noh - turn off this search highlight

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment