dotwryn/config/dotwryn.env.zsh

22 lines
603 B
Bash
Raw Normal View History

2021-09-16 12:13:05 -06:00
#####################################################################
### default .wryn configuration settings ############################
2021-09-16 12:13:05 -06:00
#####################################################################
2021-09-16 14:56:05 -06:00
# installation path for this repository
export DOTWRYN="$HOME/.wryn"
2021-02-24 15:29:07 -07:00
# order of editor preference
export PREFERRED_EDITORS=(vim vi nano)
2021-09-23 11:07:12 -06:00
# prompt generator settings
2021-09-16 15:06:49 -06:00
PS1_BRANCH_SYMBOL=''
2021-09-16 14:56:05 -06:00
PS1_INDICATOR_SYMBOL='☕'
PS1_SEPARATOR='::'
PS1_USER='%m'
2021-09-16 14:56:05 -06:00
# run at each zsh login
2021-09-16 16:15:30 -06:00
WELCOME () {
[[ $TERM =~ tmux ]] && return 0
2021-09-16 16:15:30 -06:00
{ figlet 'Welcome, beautiful'; cowsay -p 'damn u sexy'; } | lolcat
}