-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.vim
45 lines (42 loc) · 1.25 KB
/
plugins.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
set nocompatible
set modelines=5 " this should have been handled by
" nocompatible, but...
filetype off " required!
" Use Vundle
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Plugin 'gmarik/vundle'
" Plugins here
Plugin 'closetag.vim'
Plugin 'ctrlp.vim'
Plugin 'Syntastic'
Plugin 'altercation/vim-colors-solarized'
Plugin 'tpope/vim-fugitive'
Plugin 'shumphrey/fugitive-gitlab.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'Lokaltog/vim-powerline'
Plugin 'lunaru/vim-less'
Plugin 'tpope/vim-commentary'
Plugin 'surround.vim'
Plugin 'gnupg.vim'
Plugin 'myusuf3/numbers.vim'
" Plugin 'git://git.code.sf.net/p/vim-latex/vim-latex'
" Plugin 'wannesm/wmgraphviz.vim'
Plugin 'rking/ag.vim'
Plugin 'Yggdroot/indentLine'
Plugin 'bkad/CamelCaseMotion'
Plugin 'sjl/gundo.vim'
" Plugin 'ledger/vim-ledger'
Plugin 'chr4/nginx.vim'
Plugin 'google/vim-jsonnet'
Plugin 'robbles/logstash.vim'
Plugin 'pearofducks/ansible-vim'
Plugin 'hashivim/vim-terraform'
Plugin 'pedrohdz/vim-yaml-folds'
Plugin 'fatih/vim-go'
Plugin 'neoclide/coc.nvim', {'pinned': 1}
Plugin 'tpope/vim-abolish'
Plugin 'junegunn/vim-peekaboo'
Plugin 'tpope/vim-characterize'
Plugin 'svermeulen/vim-subversive'
filetype plugin indent on " required(!