diff options
| author | jdhao <jdhao@hotmail.com> | 2020-11-08 19:34:14 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2020-11-08 19:34:14 +0800 |
| commit | badaed84ca4f85a39c03f66122eb096e92af6183 (patch) | |
| tree | 10d097ff4dc1d2ab97927ebb8a62f5a46bb079b8 /core | |
| parent | 61a816e7ced768a408ae107583f934fc26c632cc (diff) | |
change capital case variable to lower case
Diffstat (limited to 'core')
| -rw-r--r-- | core/plugins.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/plugins.vim b/core/plugins.vim index 2c46121..3270fe3 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -2,9 +2,9 @@ scriptencoding utf-8 "{ Plugin installation "{{ Vim-plug related settings. " The root directory to install all plugins. -let g:PLUGIN_HOME=expand(stdpath('data') . '/plugged') +let g:plugin_home=expand(stdpath('data') . '/plugged') -if empty(readdir(g:PLUGIN_HOME)) +if empty(readdir(g:plugin_home)) augroup plug_init autocmd! autocmd VimEnter * PlugInstall --sync | quit |source $MYVIMRC @@ -13,7 +13,7 @@ endif "}} "{{ Autocompletion related plugins -call plug#begin(g:PLUGIN_HOME) +call plug#begin(g:plugin_home) " Auto-completion Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " Language Server Protocol client @@ -445,7 +445,7 @@ let g:semshi#mark_selected_nodes=0 let g:semshi#error_sign=v:false """""""""""""""""""""""""" vlime settings """""""""""""""""""""""""""""""" -command! -nargs=0 StartVlime call jobstart(printf("sbcl --load %s/vlime/lisp/start-vlime.lisp", g:PLUGIN_HOME)) +command! -nargs=0 StartVlime call jobstart(printf("sbcl --load %s/vlime/lisp/start-vlime.lisp", g:plugin_home)) "}} |
