-
Notifications
You must be signed in to change notification settings - Fork 1
/
.bash_profile
70 lines (52 loc) · 2.28 KB
/
.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
source "$HOME/.shell/bash/.profile"
####### BREW #################################################################
if [[ ! -x "$(command -v brew)" && -d "/home/linuxbrew/" ]]; then
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
####### ALIASES ############################################################
source "$HOME/.shell/bash/alias"
####### FUNCTIONS ##########################################################
source "$HOME/.shell/bash/functions/cpv"
source "$HOME/.shell/bash/functions/docker"
source "$HOME/.shell/bash/functions/iterm2"
source "$HOME/.shell/bash/functions/iterm2-shell-integration"
source "$HOME/.shell/bash/functions/macos"
source "$HOME/.shell/bash/functions/misc"
####### COMPLETIONS ########################################################
for SCRIPT in "$HOME"/.shell/bash/completions/*; do source "$SCRIPT"; done
######## SOURCES / VARS #####################################################
# Set custom bin paths
PATH=$PATH:$HOME/.bin
# Configure Go Paths
export GOROOT=$(brew --prefix go 2> /dev/null)
export GOPATH=$HOME/.go
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
# Export / File Mask
export PATH
umask 007
# You may need to manually set your language environment
export LANG=en_US.UTF-8
####### BASH ###############################################################
# Get the aliases and functions
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
#Set File Colors
export CLICOLOR=1
####### APP CONFIG #########################################################
####### CHEAT ##############################################################
export CHEAT_EDITOR="vim"
export CHEATCOLORS=true
####### DIRENV #############################################################
eval "$(direnv hook bash)"
####### FZF ################################################################
export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow -g "!{.git,node_modules}/*" 2> /dev/null'
####### ORACLE #############################################################
# Setup Oracle Environment If Installed
if [ -d /usr/lib/oracle/instantclient ]; then
export ORACLE_HOME=/usr/lib/oracle/instantclient
export LD_LIBRARY_PATH=$ORACLE_HOME/
export TNS_ADMIN=/etc
export NLS_LANG=AMERICAN_AMERICA.UTF8
fi