-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc.bundles
47 lines (43 loc) · 1.21 KB
/
.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
43
44
45
46
47
" Modeline and Notes {
" vim: set foldmarker={,} foldlevel=0 foldmethod=marker:
"
" all bundles and their config goes here
" }
" Plugins without config {
Plugin 'mileszs/ack.vim'
" surround text with quotes/tags/etc.
Plugin 'tpope/vim-surround'
" jump to target characters easily
Plugin 'Lokaltog/vim-easymotion'
" structured undo history
Plugin 'mbbill/undotree'
" run external syntax checkers on save
Plugin 'scrooloose/syntastic'
" insert/toggle comments
Plugin 'scrooloose/nerdcommenter'
Plugin 'majutsushi/tagbar'
" python stuff {
Plugin 'klen/python-mode'
Plugin 'python.vim'
Plugin 'python_match.vim'
Plugin 'pythoncomplete'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'nvie/vim-flake8'
" }
Plugin 'scrooloose/nerdtree'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'kien/ctrlp.vim'
" better autocompletion
Plugin 'Valloric/YouCompleteMe'
" }
" colorscheme {
"Plugin 'altercation/vim-colors-solarized'
"Plugin 'fisadev/fisa-vim-colorscheme'
Plugin 'wombat256.vim'
" }
" powerline (fancy status line stuff) {
Plugin 'Lokaltog/vim-powerline'
" }
" fugitive {
Plugin 'tpope/vim-fugitive'
" }