mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:10:05 +08:00
23 lines
377 B
Makefile
23 lines
377 B
Makefile
|
PATH := ./vim-themis/bin:$(PATH)
|
||
|
export THEMIS_VIM := nvim
|
||
|
export THEMIS_ARGS := -e -s --headless
|
||
|
export THEMIS_HOME := ./vim-themis
|
||
|
|
||
|
|
||
|
install: vim-themis
|
||
|
pip install --upgrade vim-vint
|
||
|
|
||
|
lint:
|
||
|
vint --version
|
||
|
vint plugin
|
||
|
vint autoload
|
||
|
|
||
|
test:
|
||
|
themis --version
|
||
|
themis test/
|
||
|
|
||
|
vim-themis:
|
||
|
git clone https://github.com/thinca/vim-themis vim-themis
|
||
|
|
||
|
.PHONY: install lint test
|