From 9f028a151eaf388a45636e0b776561188f3c6e28 Mon Sep 17 00:00:00 2001 From: jdhao Date: Tue, 28 Apr 2020 12:02:57 +0800 Subject: [PATCH] fix: add variable scope --- plugins.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.vim b/plugins.vim index cdf6ab1..f7a1e55 100644 --- a/plugins.vim +++ b/plugins.vim @@ -39,7 +39,7 @@ call plug#begin(g:PLUGIN_HOME) " Auto-completion Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } -if executable('clang') && (is_mac || is_linux) +if executable('clang') && (g:is_mac || g:is_linux) Plug 'deoplete-plugins/deoplete-clang' endif