-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc.bundles
35 lines (28 loc) · 872 Bytes
/
.vimrc.bundles
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
if &compatible
set nocompatible
end
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" My Plugins here:
Plugin 'jpo/vim-railscasts-theme'
Plugin 'vim-ruby/vim-ruby'
Plugin 'kchmck/vim-coffee-script'
Plugin 'mustache/vim-mustache-handlebars'
Plugin 'gagoar/StripWhiteSpaces'
Plugin 'kien/ctrlp.vim'
Plugin 'rking/ag.vim'
Plugin 'mattn/gist-vim'
Plugin 'scrooloose/nerdtree'
Plugin 'MatchTag'
Plugin 'scrooloose/nerdcommenter'
Plugin 'tpope/vim-haml'
Plugin 'terryma/vim-expand-region'
let g:trailertrash_blacklist = ['__Calendar', '^http:']
call vundle#end() " required
filetype plugin indent on " required