-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvimrc_bundle.vim
More file actions
87 lines (71 loc) · 2.14 KB
/
Copy pathvimrc_bundle.vim
File metadata and controls
87 lines (71 loc) · 2.14 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
Bundle 'fatih/vim-go'
" Bundle 'suan/vim-instant-markdown'
Bundle 'bufexplorer.zip'
Bundle 'snipMate'
Bundle 'torte.vim'
Bundle 'plasticboy/vim-markdown'
let MRU_Max_Entries = 300
Bundle 'mru.vim'
" go get -u github.com/nsf/gocode for daemon
" disable auto fmt on write
let g:did_ftplugin_go_fmt = 1
Bundle 'menghan/vim-gocode'
" zencoding
Bundle 'mattn/emmet-vim'
Bundle 'motemen/git-vim'
Bundle 'python.vim'
Bundle 'mako.vim'
Bundle 'menghan/mako.vim--Torborg'
Bundle 'hynek/vim-python-pep8-indent'
" Bundle 'menghan/pydoc.vim--Repass'
Bundle 'mattn/gist-vim'
Bundle 'jnwhiteh/vim-golang'
Bundle 'tpope/vim-surround'
Bundle 'scrooloose/nerdtree'
Bundle 'sjl/gundo.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'ekalinin/Dockerfile.vim'
Bundle 'lepture/vim-jinja'
Bundle 'menghan/vim-web-indent'
Bundle 'tpope/vim-dispatch'
let g:ansible_options = {'ignore_blank_lines': 0}
Bundle 'chase/vim-ansible-yaml'
let Tlist_JS_Settings = 'javascript;s:string;a:array;o:object;f:function'
Bundle 'taglist.vim'
let g:fencview_autodetect = 0
Bundle 'mbbill/fencview'
let NERDCommentWholeLinesInVMode = 1
let NERDShutUp = 1
let NERDSpaceDelims = 1
let NERDMenuMode = 0
let NERDCustomDelimiters = {
\ 'python': { 'left': '#', 'leftAlt': '#' },
\ }
Bundle 'scrooloose/nerdcommenter'
let g:cmdline_complete_no_python = 1
Bundle 'menghan/CmdlineComplete'
" Example Bundles here:
" " original repos on github
" Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" Bundle 'tpope/vim-rails.git'
" " vim-scripts repos
" Bundle 'L9'
" " non github repos
" Bundle 'git://git.wincent.com/command-t.git'
filetype plugin indent on " required!
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..