From 4d55e0e698319746d6c1e28436f3a5db77f3a9d5 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 4 Sep 2019 22:28:39 +0100 Subject: [PATCH] Load files from .zsh_profile.d --- .zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.zshrc b/.zshrc index 5812daf..9d41c24 100644 --- a/.zshrc +++ b/.zshrc @@ -101,3 +101,7 @@ fi # 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