From 00e3bb6475b152a51295f3e0e1c0c718f5ead2e5 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Sun, 6 Oct 2019 02:12:06 +0100
Subject: [PATCH] Add `path` alias

---
 tag-zsh/zsh_profile.d/aliases.zsh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tag-zsh/zsh_profile.d/aliases.zsh b/tag-zsh/zsh_profile.d/aliases.zsh
index 74a7d4ec..c4256aa5 100644
--- a/tag-zsh/zsh_profile.d/aliases.zsh
+++ b/tag-zsh/zsh_profile.d/aliases.zsh
@@ -45,6 +45,8 @@ alias rebase='git rebase'
 alias hosts="sudo vim /etc/hosts"
 alias sshconfig='vim ~/.ssh/config'
 alias zshconfig='vim ~/.zshrc'
+# Pretty print the path
+alias path='echo $PATH | tr -s ":" "\n"'
 
 # PhpStorm
 alias pstorm='open -a /Applications/PhpStorm.app "`pwd`"'