You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
README | 3 years ago | |
alias.sh | 2 years ago | |
bindings.sh | 10 years ago | |
const.sh | 3 years ago | |
extensions.sh | 9 years ago | |
functions.sh | 3 years ago | |
main.sh | 5 years ago | |
prompt.sh | 3 years ago | |
title.sh | 10 years ago | |
user.sh | 9 years ago |
README
# Create ~/.zshrc file with contents below.
#!/bin/zsh
# ~/.zshrc
ZDOTDIR=~/.zsh
[ -x $ZDOTDIR/const.sh ] && source $ZDOTDIR/const.sh
[ -x $ZDOTDIR/local_const.sh ] && source $ZDOTDIR/local_const.sh
for rc in $ZDOTDIR/*.sh
do
[ -x $rc ] && source $rc
done
unset rc
[ -x $ZDOTDIR/local.sh ] && source $ZDOTDIR/local.sh
unset ZDOTDIR