diff options
author | Teddy Wing | 2014-05-23 20:47:25 -0400 |
---|---|---|
committer | Teddy Wing | 2014-05-23 20:48:49 -0400 |
commit | 6f365a80a78952ad2c6488365f4f6094b9a57051 (patch) | |
tree | 2e47bec4dd9085b64e2bdf08c7fc07ffb1b06e26 | |
parent | 3dcafa5c60197dafb40ab837d761b71bc4101c1a (diff) | |
download | dotvim-6f365a80a78952ad2c6488365f4f6094b9a57051.tar.bz2 |
Add ftplugin/ruby for Ruby indentation settings
Set two space indentation for Ruby.
-rw-r--r-- | ftplugin/ruby.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ftplugin/ruby.vim b/ftplugin/ruby.vim new file mode 100644 index 0000000..af1770c --- /dev/null +++ b/ftplugin/ruby.vim @@ -0,0 +1,7 @@ +" Ruby vim settings + +" Indentation +setlocal expandtab +setlocal tabstop=2 +setlocal softtabstop=2 +setlocal shiftwidth=2 |