forked from danieluhl/dotfiles-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.bundles
42 lines (33 loc) · 812 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
42
call plug#begin('~/.vim/bundle')
" Visual
Plug 'mhinz/vim-startify'
Plug 'croaky/vim-colors-github'
Plug 'itchyny/lightline.vim'
" Search
Plug 'ctrlpvim/ctrlp.vim'
Plug 'rking/ag.vim'
" Movement
Plug 'christoomey/vim-tmux-navigator'
" Markdown
Plug 'itspriddle/vim-marked'
Plug 'tpope/vim-markdown'
" Editing
Plug 'tpope/vim-commentary'
Plug 'ervandew/supertab'
Plug 'sirver/ultisnips'
Plug 'honza/vim-snippets'
Plug 'terryma/vim-multiple-cursors'
" git
Plug 'tpope/vim-fugitive'
Plug 'mhinz/vim-signify'
" Languages
Plug 'scrooloose/syntastic'
Plug 'kchmck/vim-coffee-script'
Plug 'jelera/vim-javascript-syntax'
Plug 'moll/vim-node'
Plug 'rodjek/vim-puppet'
Plug 'mustache/vim-mustache-handlebars'
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
call plug#end()