summary refs log tree commit diff
path: root/bashrc
blob: e73f17d1592e5d06f24b7b08228d707c9849b51f (plain) (blame)
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
export EDITOR="emacsclient -nw"
export LANG="en_US.UTF-8"
export LC_ALL="$LANG"
export LC_CTYPE="$LANG"
export PAGER="less"
export TZ=America/Los_Angeles
export GOPATH="${HOME}/workspace/go"

[ -z "$PS1" ] && return

# prompts
export PS1="\w % "

# finally, build the path and source a few files
__add_to_path_if_exists() {
  [ -d "$1" ] && export PATH="$1:$PATH"
}

__source_file_if_exists() {
  [ -s "$1" ] && source "$1"
}

__add_to_path_if_exists "${GOPATH}/bin"
__add_to_path_if_exists "/opt/twitter/opt/go/libexec/bin"

__source_file_if_exists "/opt/google-cloud-sdk/path.bash.inc"
__source_file_if_exists "/opt/google-cloud-sdk/completion.bash.inc"
__source_file_if_exists "${HOME}/.bash_local"

# Twitter paths
__add_to_path_if_exists "${HOME}/workspace/source/dist"
__add_to_path_if_exists "/opt/twitter/bin"

alias cp="cp -i"
alias l="ls"
alias la="ls -a"
alias ll="ls -lh"
alias lt="ls -lhtr"
alias mv="mv -i"
alias rm="rm -i"
alias add="arc diff --draft"
alias tma="tmux attach || tmux"

alias smf1pending='curl -s https://aurora-smf1.twitter.biz/pendingtasks | jq .'
alias atlapending='curl -s https://aurora-atla.twitter.biz/pendingtasks | jq .'