This repository has been archived by the owner on Oct 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
bundle.vim
56 lines (52 loc) · 1.65 KB
/
bundle.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
49
50
51
52
53
54
55
56
""""""""""""""""""""""""""""""
" => Begin
""""""""""""""""""""""""""""""
set nocompatible " be vim
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#begin()
Plugin 'gmarik/vundle'
Plugin 'habamax/vim-polar'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'mhinz/vim-signify' " vcs changes in gutter
Plugin 'spf13/vim-autoclose' " auto close quotes/parens/etc.
Plugin 'surround.vim' " change, delete, add surroungings
Plugin 'repeat.vim' " enable repeating supported plugin maps with '.'
Plugin 'terryma/vim-multiple-cursors' " like sublimetext multiselect
Plugin 'klen/python-mode'
Plugin 'yssource/python.vim' " python support (up to date version of packaged script)
Plugin 'python_match.vim'
Plugin 'pythoncomplete'
Plugin 'vim-scripts/bufexplorer.zip'
Plugin 'scrooloose/syntastic' " syntax checking using external tools
Plugin 'kien/ctrlp.vim' " Fuzzy file, buffer, mru, tag, etc finder
Plugin 'sickill/vim-pasta'
Plugin 'jwhitley/vim-matchit'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdcommenter'
Plugin 'gnupg.vim'
Plugin 'tmux-plugins/vim-tmux'
if executable('ctags')
Plugin 'majutsushi/tagbar'
endif
Plugin 'SyntaxComplete'
"Plugin 'neocomplcache'
Plugin 'bronson/vim-trailing-whitespace'
Plugin 'stephpy/vim-yaml'
Plugin 'tpope/vim-endwise'
Plugin 'tpope/vim-dispatch'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-markdown'
Plugin 'tpope/vim-speeddating'
Plugin 'fatih/vim-go'
Plugin 'dhruvasagar/vim-table-mode'
Plugin 'elementalvoid/ansible-vim'
Plugin 'hashivim/vim-terraform'
Plugin 'mbbill/undotree'
if has("persistent_undo")
set undodir='~/.undodir/'
set undofile
endif
call vundle#end()
filetype plugin indent on