-
Notifications
You must be signed in to change notification settings - Fork 2
/
bash_profile
28 lines (21 loc) · 854 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
24
25
26
27
28
source ~/.git-completion.bash
source ~/.alias
source ~/.git-prompt.sh
source ~/.env
export HISTCONTROL=erasedups:ignorespace
export HISTSIZE=20000
shopt -s histappend
export PS1='\n\[\e[33m\]\w\033[36m\]$(__git_ps1 " (%s)")\[\033[00m\]\n$ '
export EDITOR="emacsclient"
export LANG="en_US.UTF-8"
export GOPATH=~/.go/
export GOPROXY=https://goproxy.githubapp.com/mod,https://proxy.golang.org/,direct
export GONOSUMDB='github.com/github/*'
export NODE_PATH=/usr/local/lib/node
export PATH="/opt/homebrew/bin:/opt/homebrew/sbin:/Applications/Emacs.app/Contents/MacOS/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:$HOME/.cargo/bin:/usr/local/opt/go/libexec/bin:$GOPATH/bin:$PATH"
export RUBY_GC_MALLOC_LIMIT=60000000
if [ -d /opt/homebrew/etc/bash_completion.d ]; then
for file in /opt/homebrew/etc/bash_completion.d/*; do
source "$file"
done
fi