mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
change capital case variable to lower case
This commit is contained in:
parent
61a816e7ce
commit
badaed84ca
@ -2,9 +2,9 @@ scriptencoding utf-8
|
|||||||
"{ Plugin installation
|
"{ Plugin installation
|
||||||
"{{ Vim-plug related settings.
|
"{{ Vim-plug related settings.
|
||||||
" The root directory to install all plugins.
|
" 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
|
augroup plug_init
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd VimEnter * PlugInstall --sync | quit |source $MYVIMRC
|
autocmd VimEnter * PlugInstall --sync | quit |source $MYVIMRC
|
||||||
@ -13,7 +13,7 @@ endif
|
|||||||
"}}
|
"}}
|
||||||
|
|
||||||
"{{ Autocompletion related plugins
|
"{{ Autocompletion related plugins
|
||||||
call plug#begin(g:PLUGIN_HOME)
|
call plug#begin(g:plugin_home)
|
||||||
" Auto-completion
|
" Auto-completion
|
||||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
" Language Server Protocol client
|
" Language Server Protocol client
|
||||||
@ -445,7 +445,7 @@ let g:semshi#mark_selected_nodes=0
|
|||||||
let g:semshi#error_sign=v:false
|
let g:semshi#error_sign=v:false
|
||||||
|
|
||||||
"""""""""""""""""""""""""" vlime settings """"""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""" 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))
|
||||||
|
|
||||||
"}}
|
"}}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user