-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashrc
More file actions
executable file
·29 lines (23 loc) · 792 Bytes
/
bashrc
File metadata and controls
executable file
·29 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# TODO: Move common dependant envs into this folder
# Calling it here as well since I'm setting up some important PATHs
# System specific stuff that shouldn't be in git
if [ -f ~/.bashrc.local ]; then
source ~/.bashrc.local
fi
source ~/dotfiles/bash/config
source ~/dotfiles/bash/aliases
source ~/dotfiles/bash/functions
source ~/dotfiles/bash/env
if [ `uname` == "Darwin" ]; then
source ~/dotfiles/bash/mac
fi
# Calling it here as well since I'm setting up some important PATHs
# TODO: Move common dependant envs into this folder
# System specific stuff that shouldn't be in git
if [ -f ~/.bashrc.local ]; then
source ~/.bashrc.local
fi
export PATH="/usr/local/bin:$PATH"
# Setting for the new UTF-8 terminal support in Lion
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8