refactor: added support for zsh

This commit is contained in:
rkiel
2020-11-21 10:20:23 -05:00
parent 5b9d2b0711
commit 7e9338128d
5 changed files with 111 additions and 33 deletions

13
dotfiles/bash_profile Normal file
View File

@@ -0,0 +1,13 @@
export EDITOR=vim
# generated by ./bin/generate-bash-prompt
export PS1='[\[\e[0;35m\]\u@\h\[\e[0m\] \[\e[1;34m\]\W\[\e[0m\]]\$ '
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
LOCALS=~/.bashrc_local
if [ -f $LOCALS ]; then
source $LOCALS
fi