You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
laughing-hipster/.profile

40 lines
655 B

#!/bin/bash
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# source environment settings
if [ -f ~/.environment ]; then
. ~/.environment
fi
# Load functions
#if [ -f ~/.bash_functions ]; then
#. ~/.bash_functions
#fi
# Load any extra aliases
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# Load pretty colors
if [ -f ~/.shell_colors ]; then
. ~/.shell_colors
fi
# for when you want to do custom junk
# Sources a folder with shell extensions
if [ -d ~/.extensions ]; then
for plugin in ~/.extensions/*; do
if [ -f $plugin ]; then
source $plugin
fi
done
fi