blob: f6144df3e8b77fac26661067bdbbdf9bb935ed2c (
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 -sf $(CURDIR)/tmux.config ~/.tmux.conf
uninstall: ## Remove the symlink
[[ -L ~/.muttrc ]] && rm ~/.tmux.conf
|