Skip to content

Instantly share code, notes, and snippets.

@axeliodiaz
Created October 26, 2015 14:40
Show Gist options
  • Save axeliodiaz/14227b8ad814e22f371d to your computer and use it in GitHub Desktop.
Save axeliodiaz/14227b8ad814e22f371d to your computer and use it in GitHub Desktop.
Fix indentation file with vim editor
set expandtab
set autoindent " Indent at the same level of the previous line
set shiftwidth=4 " Use indents of 4 spaces
set expandtab " Tabs are spaces, not tabs
set tabstop=4 " An indentation every four columns
set softtabstop=4 " Let backspace delete indent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment