-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvundle_plugins.conf
executable file
·70 lines (60 loc) · 1.79 KB
/
vundle_plugins.conf
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
set nocompatible
filetype off
set rtp+=~/vim_config/Vundle.vim
call vundle#begin('~/vim_config/plugins')
Plugin 'VundleVim/Vundle.vim'
Plugin 'tmhedberg/SimpylFold'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'w0rp/ale'
Plugin 'jnurmine/Zenburn'
Plugin 'lifepillar/vim-gruvbox8'
Plugin 'scrooloose/nerdtree'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'christoomey/vim-tmux-navigator'
Plugin 'benmills/vimux'
Plugin 'Valloric/YouCompleteMe'
Plugin 'davidhalter/jedi-vim'
Plugin 'plytophogy/vim-virtualenv'
Bundle 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'}
call vundle#end()
filetype plugin indent on
"Powerline
" wget https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf
" wget https://github.com/powerline/powerline/raw/develop/font/10-powerline-symbols.conf
set laststatus=2
" COLORTHEMES
" ================================================
set t_Co=256
set termguicolors
" colorscheme zenburn
colorscheme gruvbox8
" Zenburn Colorsheme
let g:zenburn_transparent = 1
" Gruvbox Colortheme
set background=dark
let g:gruvbox_filetype_hi_groups = 1
let g:gruvbox_plugin_hi_groups = 1
let g:gruvbox_transp_bg = 0
" Nerd-Tree otpions
let NERDTreeIgnore=['\.pyc$', '\~$']
" Ale Options
" works with multiple tools, install via
" python3 -m pip install [autopep8|flake8|isort|mypy|pylint|yapf]
" Jedi-Vim options
let g:jedi#force_py_version = 3
let g:jedi#completions_enabled = 0
" YouCompleteMe Options
let g:ycm_autoclose_preview_window_after_completion=1
" Default blacklist without 'text'
let g:ycm_filetype_blacklist = {
\ 'tagbar': 1,
\ 'qf': 1,
\ 'notes': 1,
\ 'markdown': 1,
\ 'unite': 1,
\ 'vimwiki': 1,
\ 'pandoc': 1,
\ 'infolog': 1,
\ 'mail': 1
\}
let g:ycm_global_ycm_extra_conf='~/vim_config/ycm_extra_conf.py'