From 264ee4b1fa25d32bc72f491c61f26783cdef3530 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Sat, 8 Oct 2016 12:40:24 +1100 Subject: [PATCH] Only load ALE if job support is available --- config/vim/vimrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/vim/vimrc b/config/vim/vimrc index b7fadd4..b04aacf 100644 --- a/config/vim/vimrc +++ b/config/vim/vimrc @@ -12,7 +12,6 @@ Plug 'tpope/vim-repeat' Plug 'tpope/vim-sleuth' Plug 'tpope/vim-surround' Plug 'tpope/vim-unimpaired' -Plug 'w0rp/ale' Plug 'wincent/terminus' Plug 'sheerun/vim-polyglot' @@ -22,6 +21,10 @@ if has('macunix') Plug 'itspriddle/vim-marked' endif +if has('job') + Plug 'w0rp/ale' +endif + call plug#end() colorscheme inkpot