-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundles.vim
48 lines (40 loc) · 1.15 KB
/
bundles.vim
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
36
37
38
39
40
41
42
43
44
45
46
47
48
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" Interfaces
"Bundle 'tpope/vim-fugitive'
Bundle 'scrooloose/nerdtree'
Bundle 'Conque-Shell'
" Interactive
"Bundle 'docunext/closetag.vim'
"Bundle 'majutsushi/tagbar'
"Bundle 'Raimondi/delimitMate'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'msanders/snipmate.vim'
Bundle 'scrooloose/syntastic'
Bundle 'tomtom/tcomment_vim'
" Colour Scheme
Bundle 'altercation/vim-colors-solarized'
" Language Definitions
Bundle 'wavded/vim-stylus'
Bundle 'kchmck/vim-coffee-script'
Bundle 'jnwhiteh/vim-golang'
Bundle 'derekwyatt/vim-scala'
filetype plugin indent on
" Brief help
" Bundles can be imported from github
" Bundle 'user/repo'
" or from vim-scripts
" Bundle 'name'
" or from a git repo
" Bundle 'git://...'
" :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 ar not allowed