diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-01-01 22:49:01 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-01-01 22:49:01 +0000 |
commit | eb52f06b57807131310325c59348f31133977be8 (patch) | |
tree | 04a7bea8bdab14ce38394ac2b009dbaa1ed48e3e /Makefile | |
parent | a0a1c68b3a532766d378df0f8d4e85610c70c7f1 (diff) |
Fixing linux vs mac config
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a52e48 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |