blob: 128d5307efafca7c0d9f620b0c5943a1d5828a5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Loads the other files in order. This file should not be touched. It is used
# simply as a way to load the other files in the .zshrc.d folder.
source /etc/profile
for f in $HOME/.zshrc.d/*.zsh ; do
source "$f"
done || true
[ -f "/home/rahm/.ghcup/env" ] && . "/home/rahm/.ghcup/env" # ghcup-env
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|