-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbash_profile
More file actions
27 lines (19 loc) · 789 Bytes
/
bash_profile
File metadata and controls
27 lines (19 loc) · 789 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
source ~/.git-completion.bash
source ~/.alias
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://proxy.golang.org/,direct
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
source $(brew --prefix asdf)/libexec/asdf.sh