Skip to content

Instantly share code, notes, and snippets.

@kinow
Created February 10, 2016 21:32
Show Gist options
  • Save kinow/e36ef9c9ed41fa7679e3 to your computer and use it in GitHub Desktop.
Save kinow/e36ef9c9ed41fa7679e3 to your computer and use it in GitHub Desktop.
my vimrc
" size of a hard tabstop
set tabstop=4
" size of an "indent"
set shiftwidth=4
" combination of spaces and tabs are used to simulate tab stops at width
" other than the (hard)tabstop
set softtabstop=4
" make "tab" insert indents instead of tabs at the beginning of a line
set smarttab
" always use spaces instead of tab characters
set expandtab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment