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

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