Files
dotfiles/bash/.bash_profile
2020-07-14 10:38:52 +01:00

21 lines
497 B
Bash

# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export TZ=GB
export LANG=en_GB.UTF-8
export EDITOR=nano
export VISUAL=nano
# OSX Specific envs
if [ $(uname) == "Darwin" ]; then
# Shhh Catlina, we don't care!
export BASH_SILENCE_DEPRECATION_WARNING=1
fi
export PS1="\[\e[0;90m\][\[\e[0;37m\]\u\[\e[0;37m\]@\[\e[0;37m\]\H\[\e[0;90m\]] \[\e[0;90m\](\[\e[0;37m\]\W\[\e[0;90m\]) \[\e[0;37m\]\$\[\e[0m\] "