14 lines
170 B
Plaintext
14 lines
170 B
Plaintext
# Create ~/.zshrc file with contents below.
|
|
|
|
#!/bin/zsh
|
|
# ~/.zshrc
|
|
|
|
ZDOTDIR=~/.zsh
|
|
|
|
source $ZDOTDIR/constants.sh
|
|
for rc in $ZDOTDIR/*.sh
|
|
do
|
|
source $rc
|
|
done
|
|
unset rc
|