diff options
| author | jdhao <jdhao@hotmail.com> | 2021-02-26 23:28:53 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-02-26 23:28:53 +0800 |
| commit | 8103d87ae6e92eae061fee130bb136d754700d3e (patch) | |
| tree | 132388b253aee364181654c2050e30165596216e /core/plugins.vim | |
| parent | fa0e70bea355f11a7cfa76dcb8eed28ebd0b9597 (diff) | |
Install vlime only when sbcl is available
Diffstat (limited to 'core/plugins.vim')
| -rw-r--r-- | core/plugins.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/plugins.vim b/core/plugins.vim index b6a896c..e5cda06 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -41,8 +41,10 @@ Plug 'jeetsukumaran/vim-pythonsense' Plug 'machakann/vim-swap' " IDE for Lisp -" Plug 'kovisoft/slimv' -Plug 'vlime/vlime', {'rtp': 'vim/', 'for': 'lisp'} +if executable('sbcl') + " Plug 'kovisoft/slimv' + Plug 'vlime/vlime', {'rtp': 'vim/', 'for': 'lisp'} +endif " C++ semantic highlighting if executable('ccls') |
