1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2024-11-17 17:03:32 +01:00
dotfiles/profile

26 lines
410 B
Text
Raw Normal View History

# Define DOTFILES for easy access
DOTFILES="$HOME/.dotfiles"
# Add DOTFILES/bin/ to PATH
DOTBIN="$HOME/.bin"
if [ -d "$DOTBIN" ]; then
export PATH="$PATH:$DOTBIN"
fi
# Always try to use vi(m) if possible
export EDITOR="vi"
# Source Envs
DOTENVS="$HOME/.envs"
if [ -d "DOTENVS" ]; then
source "$DOTENVS/*.active"
fi
# Source Bashrc if BASH
if [ "$BASH" ] && [ -f ~/.bashrc ]; then
source ~/.bashrc
fi