diff --git a/tag-zsh/zsh_profile.d/navigation.zsh b/tag-zsh/zsh_profile.d/navigation.zsh new file mode 100644 index 0000000..3ae0525 --- /dev/null +++ b/tag-zsh/zsh_profile.d/navigation.zsh @@ -0,0 +1,2 @@ +setopt auto_cd +cdpath=($HOME $HOME/Code $HOME/Code/clients $HOME/Code/os) diff --git a/tag-zsh/zshrc b/tag-zsh/zshrc index 396b340..11e731b 100644 --- a/tag-zsh/zshrc +++ b/tag-zsh/zshrc @@ -97,3 +97,7 @@ source ~/.functions # Stop zsh from eating space before pipe symbol # https://superuser.com/questions/613685/how-stop-zsh-from-eating-space-before-pipe-symbol ZLE_REMOVE_SUFFIX_CHARS="" + +for zsh_source in $HOME/.zsh_profile.d/*.zsh; do + source $zsh_source +done