blob: 4a52e4876b8827dcd328761fe7530c43d4e7bb83 (
plain)
1
2
3
4
5
6
7
8
|
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
install: ## Install the symlink
ln -s $(CURDIR)/tmux.config ~/.tmux.conf
uninstall: ## Remove the sumlink
[[ -L ~/.muttrc ]] && rm ~/.tmux.conf
|