mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-05 02:36:44 +00:00
43 lines
837 B
Makefile
43 lines
837 B
Makefile
PRE_COMMIT_ENV ?= .pre_commit_env
|
|
PRE_COMMIT_ENV_BIN ?= $(PRE_COMMIT_ENV)/bin
|
|
|
|
.PHONY: default
|
|
default: check
|
|
|
|
.PHONY: install
|
|
install:
|
|
sh ./vim-sync-append.sh
|
|
|
|
.PHONY: update
|
|
update:
|
|
sh ./update-plugins.sh
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
rm ~/.vimrc
|
|
rm ~/.nvimrc
|
|
rm -fr ~/.vim
|
|
rm -fr ~/.nvim
|
|
rm -fr ~/.config/nvim
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -fr ./vim/plugged
|
|
rm -fr ./vim/autoload/plug.vim
|
|
|
|
# Installs pre-commit hooks
|
|
$(PRE_COMMIT_ENV):
|
|
virtualenv $(PRE_COMMIT_ENV)
|
|
|
|
$(PRE_COMMIT_ENV_BIN)/pre-commit: $(PRE_COMMIT_ENV)
|
|
$(PRE_COMMIT_ENV_BIN)/pip install pre-commit
|
|
|
|
.PHONY: install-hooks
|
|
install-hooks: $(PRE_COMMIT_ENV_BIN)/pre-commit
|
|
$(PRE_COMMIT_ENV_BIN)/pre-commit install --install-hooks
|
|
|
|
# Checks files for encryption
|
|
.PHONY: check
|
|
check: $(PRE_COMMIT_ENV_BIN)/pre-commit
|
|
$(PRE_COMMIT_ENV_BIN)/pre-commit run --all-files
|