From 3ce343a0d458b95cdbd4aad2fe186c99eb855816 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 10 Jun 2026 16:53:27 -0700 Subject: zsh: Load other init files too --- zsh/zshrc.org | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/zsh/zshrc.org b/zsh/zshrc.org index dcdc1cd..27af335 100644 --- a/zsh/zshrc.org +++ b/zsh/zshrc.org @@ -210,3 +210,13 @@ Autoload any ZSH function from =$HOME/.zsh/functions=. PROMPT='%T $(spwd) %B%(?.%F{2}.%F{1}[%?])>%b%f ' RPROMPT='${vcs_info_msg_0_}' #+end_src + +* Other configurations + +Other setups might also make ZSH files, these should all be loaded. + +#+begin_src sh + for f in ~/.config/zsh/conf.d/*.sh; do + source $f + done +#+end_src -- cgit v1.3-2-g0d8e