do not load python stuff if we are running vim <= 800
This commit is contained in:
parent
cdf2d64b7c
commit
7cc399cba1
2 changed files with 4 additions and 3 deletions
1
gvimrc
1
gvimrc
|
@ -1,4 +1,3 @@
|
||||||
" Iosevka Term ss10
|
|
||||||
if has('win32')
|
if has('win32')
|
||||||
set guifont=Fantasque_Sans_Mono:h11
|
set guifont=Fantasque_Sans_Mono:h11
|
||||||
else
|
else
|
||||||
|
|
|
@ -16,8 +16,10 @@ Plug 'vdrandom/vim-tru-typewriter'
|
||||||
Plug 'vim-scripts/directionalWindowResizer'
|
Plug 'vim-scripts/directionalWindowResizer'
|
||||||
|
|
||||||
" IDE liek, per filetype
|
" IDE liek, per filetype
|
||||||
|
if v:version >= 800
|
||||||
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
||||||
Plug 'w0rp/ale', { 'for': 'python' }
|
Plug 'w0rp/ale', { 'for': 'python' }
|
||||||
|
endif
|
||||||
|
|
||||||
" colorschemes
|
" colorschemes
|
||||||
Plug 'lifepillar/vim-solarized8'
|
Plug 'lifepillar/vim-solarized8'
|
||||||
|
|
Loading…
Reference in a new issue