mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:30:04 +08:00
7c9058447b
update dein to 9ab8106405
25 lines
463 B
Makefile
25 lines
463 B
Makefile
PATH := ./vim-themis/bin:$(PATH)
|
|
export THEMIS_VIM := nvim
|
|
export THEMIS_ARGS := -e -s --headless
|
|
export THEMIS_HOME := ./vim-themis
|
|
|
|
|
|
install:
|
|
pip install --upgrade -r test/requirements.txt
|
|
|
|
install-user:
|
|
pip install --user --upgrade -r test/requirements.txt
|
|
|
|
lint:
|
|
vint --version
|
|
vint autoload
|
|
|
|
test: vim-themis
|
|
themis --version
|
|
themis test/
|
|
|
|
vim-themis:
|
|
git clone https://github.com/thinca/vim-themis vim-themis
|
|
|
|
.PHONY: install install-user lint test
|