-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bash_profile
45 lines (33 loc) · 1.17 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
source ~/.config/liquidpromptrc
if [ -f /opt/homebrew/share/liquidprompt ]; then
. /opt/homebrew/share/liquidprompt
fi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
export CLICOLOR=1;
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
# Dont show the same command in history
export HISTCONTROL=ignoredups
alias hashi="cd ~/go/src/github.com/hashicorp/"
alias ndev="cd ~/go/src/github.com/hashicorp/nomad/"
#Home Brew
export PATH=/opt/homebrew/bin/:/usr/local/bin:/usr/local/sbin:$PATH
# GO
export GOPATH="/Users/alexdadgar/go"
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOBIN:/usr/local/go/bin
# AWS
export AWS_REGION=us-west-2
export AWS_ACCESS_KEY_ID=XXX
export AWS_SECRET_ACCESS_KEY=XXX
# GIT
alias git=hub
# Brew bash completions
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion
# Vagrant
export VAGRANT_DEFAULT_PROVIDER=vmware_fusion
# Better history
shopt -s histappend # append new history items to .bash_history
export HISTCONTROL=ignorespace # leading space hides commands from history
export HISTFILESIZE=10000 # increase history file size (default is 500)
export HISTSIZE=${HISTFILESIZE} # increase history size (default is 500)
source ~/.bashrc