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.
|
3 years ago | |
---|---|---|
README | 4 years ago | |
alias.sh | 3 years ago | |
bindings.sh | 11 years ago | |
const.sh | 4 years ago | |
extensions.sh | 10 years ago | |
functions.sh | 4 years ago | |
main.sh | 6 years ago | |
prompt.sh | 4 years ago | |
title.sh | 11 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