-
Notifications
You must be signed in to change notification settings - Fork 1
/
vimrc.bundles
41 lines (33 loc) · 943 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
36
37
38
39
40
41
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#begin()
" Let Vundle manage Vundle
Bundle 'gmarik/vundle'
" Define bundles via Github repos
Bundle 'altercation/vim-colors-solarized'
" Bundle 'avakhov/vim-yaml'
Bundle 'fatih/vim-go'
Bundle 'janko-m/vim-test'
Bundle 'kien/ctrlp.vim'
Bundle 'mileszs/ack.vim'
Bundle 'tpope/vim-bundler'
Bundle 'tpope/vim-endwise'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-markdown'
Bundle 'tpope/vim-surround'
Bundle 'vim-scripts/tComment'
" Disabled
"Bundle 'pangloss/vim-javascript'
"Bundle 'kchmck/vim-coffee-script'
"Bundle 'vim-scripts/ctags.vim'
"Bundle 'smerrill/vcl-vim-plugin'
" Plugins
Plugin 'nsf/gocode', {'rtp': 'vim/'}
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
filetype on
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required