From a118ced017fad7bee0411e56ca14558c9d974e3c Mon Sep 17 00:00:00 2001 From: Thomas Preisner Date: Thu, 16 Nov 2023 22:51:52 +0100 Subject: [PATCH] zshrc: Enable usage of additional local configuration --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index a0c35fb..24e77ac 100644 --- a/zshrc +++ b/zshrc @@ -9,3 +9,8 @@ source ~/.zsh/history.zsh source ~/.zsh/aliases.zsh source ~/.zsh/multiplexer.zsh source ~/.zsh/exports.zsh + +# Try loading additional local config if available +if [ -f ~/.zsh/custom.zsh ]; then + source ~/.zsh/custom.zsh +fi