mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 12:26:39 +00:00
added all shell configuration files
This commit is contained in:
22
shellrc.sh
Normal file
22
shellrc.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#
|
||||
# Shell Init
|
||||
#
|
||||
|
||||
# Set path to root of dotfiles
|
||||
if [ -n "${BASH_SOURCE[0]}" ]; then
|
||||
DOTFILES="`dirname \"${BASH_SOURCE[0]}\"`"
|
||||
elif [ -n "$0" ]; then
|
||||
DOTFILES="`dirname \"$0\"`"
|
||||
fi
|
||||
|
||||
# # Load main dotfiles
|
||||
DOTSHELL="$DOTFILES/shell"
|
||||
if [ -f "$DOTSHELL/_main.sh" ]; then
|
||||
source "$DOTSHELL/_main.sh"
|
||||
fi
|
||||
|
||||
# # Setup and load private dotfiles
|
||||
DOTPFILES="$DOTFILES/private"
|
||||
if [ -f "$DOTPFILES/shellrc.sh" ]; then
|
||||
source "$DOTPFILES/shellrc.sh"
|
||||
fi
|
||||
Reference in New Issue
Block a user