Skip to content

Commit

Permalink
ruby vimrc
Browse files Browse the repository at this point in the history
  • Loading branch information
windy committed Apr 19, 2012
0 parents commit 5c3b4ab
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Ruby vimrc
==========

Birth for what?
=======

Simplely config your vimrc, just for ruby programming


How To Use?
=========
```bash
git clone <project>

cp ruby-vimrc/vimrc ~/.vimrc

Open vim

:BundleInstall( in vim )
```
39 changes: 39 additions & 0 deletions vimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
set nocompatible " be iMproved
filetype off " required!

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'

" my configure
set tabstop=2
set softtabstop=2
set shiftwidth=2

" My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'tpope/vim-rails.git'
" vim-scripts repos
Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
" ...

filetype plugin indent on " required!
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..

0 comments on commit 5c3b4ab

Please sign in to comment.