aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-06-10 16:53:27 -0700
committerGravatar Tom Willemse2026-06-10 16:55:34 -0700
commit3ce343a0d458b95cdbd4aad2fe186c99eb855816 (patch)
tree52fb2d9233c903a5f45547fc6547cec410445819
parentcb73a736736c8091697f93e62c31502bed9ccf80 (diff)
downloadnew-dotfiles-3ce343a0d458b95cdbd4aad2fe186c99eb855816.tar.gz
new-dotfiles-3ce343a0d458b95cdbd4aad2fe186c99eb855816.zip
zsh: Load other init files too
-rw-r--r--zsh/zshrc.org10
1 files changed, 10 insertions, 0 deletions
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