[adopt] vim-themis

This commit is contained in:
kazukazuinaina
2022-06-05 18:21:40 +09:00
parent 5d7e656081
commit 8681d4d49e
9 changed files with 362 additions and 33 deletions

28
test/.themisrc Normal file
View File

@@ -0,0 +1,28 @@
let s:helper = themis#helper('assert')
let s:deps = themis#helper('deps')
call themis#helper('command').with(s:helper)
call s:deps.git('vim-airline/vim-airline-themes')
call s:deps.git('tomasr/molokai')
function! MyFuncref(...)
call a:1.add_raw('hello world')
return 1
endfunction
function! MyIgnoreFuncref(...)
return -1
endfunction
function! MyAppend1(...)
call a:1.add_raw('hello')
endfunction
function! MyAppend2(...)
call a:1.add_raw('world')
endfunction
let g:airline#extensions#default#layout = [
\ [ 'c', 'a', 'b', 'warning' ],
\ [ 'x', 'z', 'y' ]
\ ]