-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundles.vim
More file actions
40 lines (36 loc) · 929 Bytes
/
bundles.vim
File metadata and controls
40 lines (36 loc) · 929 Bytes
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
set nocompatible " be iMproved
filetype off " required!
" Vundle (https://github.com/gmarik/vundle)
if has('win32')
set rtp+=~/vimfiles/bundle/vundle/
let path='~/vimfiles/bundle'
call vundle#rc(path)
else
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
endif
Bundle 'gmarik/vundle'
Bundle 'altercation/vim-colors-solarized'
Bundle 'airblade/vim-gitgutter'
Bundle 'jmcantrell/vim-virtualenv'
Bundle 'kien/ctrlp.vim'
Bundle 'mileszs/ack.vim'
Bundle 'plasticboy/vim-markdown'
if has('mac')
Bundle 'rizzatti/dash.vim'
endif
Bundle 'rking/ag.vim'
Bundle 'saltstack/salt-vim'
Bundle 'scrooloose/syntastic'
Bundle 'sjl/gundo.vim'
Bundle 'tpope/vim-commentary'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-repeat'
Bundle 'tpope/vim-sensible'
Bundle 'tpope/vim-surround'
if has('win32')
Bundle 'davidhalter/jedi-vim'
else
Bundle 'Valloric/YouCompleteMe'
endif
filetype plugin indent on