Skip to content

Xvezda/vim-veast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

veast.vim

GitHub Action Status

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.

Usage

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.

Direct method

# Create autoload
mkdir -p <your_project_path>/autoload
# Copy veast library
cp plugin/veast.vim <your_project_path>/autoload/

Plugin manager method

e.g. vim-plug

call plug#begin()
Plug 'Xvezda/vim-veast'
" ...
call plug#end()

Include

runtime! autoload/veast.vim

Test

vader.vim required

make test

Use case