-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.bundles
executable file
·66 lines (57 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#rc()
Bundle 'gmarik/Vundle.vim'
Bundle 'scrooloose/nerdtree'
Bundle 'jistr/vim-nerdtree-tabs'
"Bundle 'Xuyuanp/git-nerdtree'
Bundle 'kien/ctrlp.vim'
Bundle 'scrooloose/syntastic'
Bundle 'airblade/vim-gitgutter'
Bundle 'tpope/vim-fugitive'
Bundle 'fholgado/minibufexpl.vim'
Bundle 'ervandew/supertab'
Bundle 'majutsushi/tagbar'
"Bundle 'davidhalter/jedi-vim'
"Bundle 'Lokaltog/vim-easymotion'
Bundle 'Valloric/YouCompleteMe'
Bundle 'godlygeek/tabular'
Bundle 'tpope/vim-surround'
Bundle 'easymotion/vim-easymotion'
Bundle 'sjl/gundo.vim'
Bundle 'spiiph/vim-space'
Bundle 'bling/vim-airline'
Bundle 'altercation/vim-colors-solarized'
Bundle 'tomasr/molokai'
Bundle 'Tuxdude/mark.vim'
"Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'Yggdroot/indentLine'
" included in python-mode
"Bundle 'hynek/vim-python-pep8-indent'
Bundle 'xolox/vim-easytags'
Bundle 'xolox/vim-misc'
Bundle 'mileszs/ack.vim'
Bundle 'klen/python-mode'
"Bundle 'vimwiki'
"Bundle 'VimIM'
Bundle 'a.vim'
"Bundle 'AutoComplPop'
"Bundle 'matchit.zip'
if has("gui_running")
"colorscheme solarized
colorscheme molokai
else
colorscheme molokai
let g:rehash256=1
let g:molokai_original=1
endif
"let g:ycm_global_ycm_extra_conf = '~/.ycm_extra_conf.py'
let g:Vimim_cloud = 'baidu,qq'
let g:Vimim_map='c-bslash'
let g:solarized_termcolors=256
nmap <leader>f :NERDTreeToggle<CR>
let g:NERDTreeChDirMode=2
nmap <leader>b :CtrlPBuffer<CR>
let g:ctrlp_extensions = ['tag']
let g:SuperTabDefaultCompletionType = "context"
"let g:SuperTabDefaultCompletionType = "<C-X><C-O>"
let g:GeeknoteFormat="markdown"