This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
repl.vim/test/.themisrc

15 lines
439 B
Plaintext
Raw Normal View History

2015-12-24 21:58:21 +09:00
call themis#option('runtimepath', expand('~/.vim/bundle/repl.vim'))
2015-12-22 23:56:27 +09:00
" Add dependency
call themis#option('runtimepath', expand('~/.vim/bundle/vimproc.vim'))
call themis#option('runtimepath', expand('~/.vim/bundle/vimshell.vim'))
" Util Functions
2015-12-24 21:58:21 +09:00
function! ResetVariables() abort
" Unlet variable
2015-12-22 23:56:27 +09:00
unlet! g:repl_filetype_repl
2015-12-23 22:30:34 +09:00
unlet! g:repl_no_default_keymappings
2015-12-24 21:58:21 +09:00
" Set default value
let g:repl_split_command = 'split'
2015-12-22 23:56:27 +09:00
endfunction