forked from windy/ruby-vimrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5c3b4ab
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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 ) | ||
``` |
This file contains 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
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.. |