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 12:58:21 +00:00
call themis#option('runtimepath', expand('~/.vim/bundle/repl.vim'))
2015-12-22 14:56:27 +00: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 12:58:21 +00:00
function! ResetVariables() abort
" Unlet variable
2015-12-22 14:56:27 +00:00
unlet! g:repl_filetype_repl
2015-12-23 13:30:34 +00:00
unlet! g:repl_no_default_keymappings
2015-12-24 12:58:21 +00:00
" Set default value
let g:repl_split_command = 'split'
2015-12-22 14:56:27 +00:00
endfunction