.bashrc -> .bashrc.vahagn

This commit is contained in:
2021-06-25 18:25:28 +01:00
parent 4758e6b2f2
commit d8de2dd2d4
3 changed files with 8 additions and 8 deletions

View File

@@ -80,22 +80,22 @@ export LESS=-R
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# Set command prompt # Set command prompt
[ -x ${MYCFG}/.profile.prompt ] && source ${MYCFG}/.profile.prompt [ -x ${HOME}/.profile.prompt ] && source ${HOME}/.profile.prompt
[ -x ${MYCFG}/.profile.dircolor ] && source ${MYCFG}/.profile.dircolor [ -x ${HOME}/.profile.dircolor ] && source ${HOME}/.profile.dircolor
[ -x ${MYCFG}/.profile.completion ] && source ${MYCFG}/.profile.completion [ -x ${HOME}/.profile.completion ] && source ${HOME}/.profile.completion
[ -x ${MYCFG}/.profile.dev ] && source ${MYCFG}/.profile.dev [ -x ${HOME}/.profile.dev ] && source ${HOME}/.profile.dev
[ -x ${MYCFG}/.profile.aliases ] && source ${MYCFG}/.profile.aliases [ -x ${HOME}/.profile.aliases ] && source ${HOME}/.profile.aliases
# Haskell # Haskell
if [ -e $HOME/.ghcup/bin ]; then if [ -f $HOME/.ghcup/env ]; then
export PATH=$HOME/.ghcup/bin:$PATH export PATH=$HOME/.ghcup/env:$PATH
fi fi
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# #
# Run local settings. # Run local settings.
# #
[ -x $HOME/.bashrc.local ] && . $HOME/.bashrc.local [ -x ${HOME}/.bashrc.local ] && . ${HOME}/.bashrc.local
# #
# Clean error level. # Clean error level.