From 61a816e7ced768a408ae107583f934fc26c632cc Mon Sep 17 00:00:00 2001 From: jdhao Date: Sun, 8 Nov 2020 19:33:23 +0800 Subject: [PATCH] Add Vlime settings --- core/plugins.vim | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/core/plugins.vim b/core/plugins.vim index 3f1d769..2c46121 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -28,7 +28,7 @@ if !executable('vim-language-server') endif "}} -"{{ Python-related plugins +"{{ language-specific plugins " Python syntax highlighting and more if g:is_mac || g:is_win Plug 'numirias/semshi', { 'do': ':UpdateRemotePlugins' } @@ -40,6 +40,9 @@ Plug 'Vimjas/vim-python-pep8-indent', {'for': 'python'} " Python-related text object Plug 'jeetsukumaran/vim-pythonsense' Plug 'machakann/vim-swap' + +" IDE for Lisp +Plug 'vlime/vlime', {'rtp': 'vim/', 'for': 'lisp'} "}} "{{ Search related plugins @@ -433,13 +436,17 @@ let g:UltiSnipsJumpBackwardTrigger='' let g:UltiSnipsSnippetDirectories=['UltiSnips', 'my_snippets'] "}} -"{{ Python-related +"{{ Language specific plugin """""""""""""""""""""""""" semshi settings """"""""""""""""""""""""""""""" " Do not highlight for all occurances of variable under cursor let g:semshi#mark_selected_nodes=0 " Do not show error sign since linting plugin is specicialized for that 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)) + "}} "{{ Search related