dotfiles/vim/plugins/deoplete.nvim/Makefile

33 lines
646 B
Makefile
Raw Normal View History

2018-04-05 13:06:54 +02:00
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 neovim --upgrade
pip install pytest --upgrade
pip install flake8 --upgrade
pip install mypy --upgrade
pip install vim-vint --upgrade
lint:
vint --version
vint plugin
vint autoload
flake8 --version
flake8 rplugin/python3/deoplete
mypy --version
mypy --silent-imports rplugin/python3/deoplete
test:
themis --version
themis test/autoload/*
pytest --version
pytest
vim-themis:
git clone https://github.com/thinca/vim-themis vim-themis
.PHONY: install lint test