Veast is a library for vim script which highly inspired by lodash and underscore.
It contains useful helper functions, which provides efficient way to writing vim plugins.
You can either directly include veast to your vim plugin project or make dependency by using plugin manager(e.g. pathogen, vim-plug etc.) to make it works.
# Create autoload
mkdir -p <your_project_path>/autoload
# Copy veast library
cp plugin/veast.vim <your_project_path>/autoload/
e.g. vim-plug
call plug#begin()
Plug 'Xvezda/vim-veast'
" ...
call plug#end()
runtime! autoload/veast.vim
vader.vim required
make test