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
2015-12-24 21:58:21 +09:00

16 lines
467 B
Plaintext

" XXX: rewrite generic path
call themis#option('runtimepath', expand('~/.vim/bundle/repl.vim'))
" Add dependency
call themis#option('runtimepath', expand('~/.vim/bundle/vimproc.vim'))
call themis#option('runtimepath', expand('~/.vim/bundle/vimshell.vim'))
" Util Functions
function! ResetVariables() abort
" Unlet variable
unlet! g:repl_filetype_repl
unlet! g:repl_no_default_keymappings
" Set default value
let g:repl_split_command = 'split'
endfunction