Only load ALE if job support is available
This commit is contained in:
parent
6826c738e2
commit
264ee4b1fa
1 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,6 @@ Plug 'tpope/vim-repeat'
|
||||||
Plug 'tpope/vim-sleuth'
|
Plug 'tpope/vim-sleuth'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
Plug 'tpope/vim-unimpaired'
|
Plug 'tpope/vim-unimpaired'
|
||||||
Plug 'w0rp/ale'
|
|
||||||
Plug 'wincent/terminus'
|
Plug 'wincent/terminus'
|
||||||
|
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
|
@ -22,6 +21,10 @@ if has('macunix')
|
||||||
Plug 'itspriddle/vim-marked'
|
Plug 'itspriddle/vim-marked'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if has('job')
|
||||||
|
Plug 'w0rp/ale'
|
||||||
|
endif
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
colorscheme inkpot
|
colorscheme inkpot
|
||||||
|
|
Loading…
Reference in a new issue