Created
August 30, 2012 17:06
-
-
Save daviddavis/3533528 to your computer and use it in GitHub Desktop.
vimrc for Ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " set up tabs for all files (recommended) | |
| set ts=2 | |
| set et | |
| set softtabstop=2 | |
| set sw=2 | |
| " OR | |
| " set up tabs just for ruby | |
| augroup filetypedetect | |
| au FileType ruby setl sw=2 sts=2 et | |
| augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment