.themisrc 594 B

12345678910111213141516171819202122232425262728
  1. let s:helper = themis#helper('assert')
  2. let s:deps = themis#helper('deps')
  3. call themis#helper('command').with(s:helper)
  4. call s:deps.git('vim-airline/vim-airline-themes')
  5. call s:deps.git('tomasr/molokai')
  6. function! MyFuncref(...)
  7. call a:1.add_raw('hello world')
  8. return 1
  9. endfunction
  10. function! MyIgnoreFuncref(...)
  11. return -1
  12. endfunction
  13. function! MyAppend1(...)
  14. call a:1.add_raw('hello')
  15. endfunction
  16. function! MyAppend2(...)
  17. call a:1.add_raw('world')
  18. endfunction
  19. let g:airline#extensions#default#layout = [
  20. \ [ 'c', 'a', 'b', 'warning' ],
  21. \ [ 'x', 'z', 'y' ]
  22. \ ]