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.
34 lines
855 B
34 lines
855 B
if [ -f $HOME/.zsh/zsh.conf ]
|
|
then
|
|
source $HOME/.zsh/zsh.conf
|
|
else
|
|
echo 'CONFIGURATION NOT SET!\n Copy zsh.conf from the example_configs directory and set up your preferences!\n Setting basic parameters only!' >&2
|
|
source $HOME/.zsh/history
|
|
source $HOME/.zsh/interactive
|
|
source $HOME/.zsh/exports
|
|
source $HOME/.zsh/bindkeys
|
|
source $HOME/.zsh/completion
|
|
source $HOME/.zsh/setopt
|
|
PROMPT="UNCONFIGURED% "
|
|
exit 1
|
|
fi
|
|
source $HOME/.zsh/history
|
|
source $HOME/.zsh/alias
|
|
source $HOME/.zsh/interactive
|
|
source $HOME/.zsh/exports
|
|
source $HOME/.zsh/bindkeys
|
|
source $HOME/.zsh/completion
|
|
source $HOME/.zsh/setopt
|
|
if [ $SYNTAX_HIGHLIGHT ]
|
|
then
|
|
source $HOME/.zsh/zsh-syntax-highlight/zsh-syntax-highlighting.zsh
|
|
fi
|
|
source $HOME/.zsh/prompt
|
|
if [ -f $HOME/.zsh/custom ]
|
|
then
|
|
source $HOME/.zsh/custom
|
|
fi
|
|
|
|
PATH=$PATH:$HOME/bin:/opt/java/current/bin
|
|
|