1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:10:05 +08:00
SpaceVim/bundle/dein.vim/Makefile

25 lines
463 B
Makefile
Raw Normal View History

2020-06-13 14:06:35 +08:00
PATH := ./vim-themis/bin:$(PATH)
export THEMIS_VIM := nvim
export THEMIS_ARGS := -e -s --headless
export THEMIS_HOME := ./vim-themis
install:
2020-06-13 14:06:35 +08:00
pip install --upgrade -r test/requirements.txt
install-user:
2020-06-13 14:06:35 +08:00
pip install --user --upgrade -r test/requirements.txt
lint:
vint --version
vint autoload
test: vim-themis
2020-06-13 14:06:35 +08:00
themis --version
themis test/
vim-themis:
git clone https://github.com/thinca/vim-themis vim-themis
.PHONY: install install-user lint test