forked from OzzyCzech/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_profile
23 lines (18 loc) · 949 Bytes
/
.bash_profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#############################################################################
# load other files
#############################################################################
# Load ~/.extra, ~/.bash_prompt, ~/.exports, ~/.aliases, ~/.shortcuts and ~/.functions
# ~/.extra can be used for settings you don’t want to commit
for file in ~/.{extra,bash_prompt,exports,aliases,functions,shortcuts}; do
[ -r "$file" ] && source "$file"
done
unset file
#############################################################################
# Prefer US English and use UTF-8
#############################################################################
export LC_ALL="en_US.UTF-8"
export LANG="en_US"
#############################################################################
# path
#############################################################################
export PATH="$(brew --prefix coreutils)/libexec/gnubin:/usr/local/bin:/usr/local/sbin:$PATH"