summary refs log tree commit diff
path: root/bashrc
blob: 097fd6a865f3ffc75f709fd28c2ce9c64a0f7cbc (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
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
71
72
73
export TERM=xterm-256color
export EDITOR="emacsclient -a enacs -nw"
export HISTFILE=
export LANG="en_US.UTF-8"
export LC_ALL="$LANG"
export LC_CTYPE="$LANG"
export PAGER="less"
export TMPDIR="${HOME}/tmp"
export TZ=America/Los_Angeles

export PATH="$HOME/bin":"$HOME/.bin":"$PATH"

[ -z "$PS1" ] && return

# prompts
export PS1="\w % "

# limits
ulimit -S -c 0

# Set up ssh-agent
SSH_ENV="$HOME/.ssh/environment"

function start_agent {
  if [[ -f "${HOME}/.ssh/id_rsa" ]]; then
    echo "Initializing new GPG agent..."
    touch $SSH_ENV
    chmod 600 "${SSH_ENV}"
    /usr/bin/ssh-agent | sed 's/^echo/#echo/' >> "${SSH_ENV}"
    . "${SSH_ENV}" > /dev/null
    /usr/bin/ssh-add
  fi
}

# Source SSH settings, if applicable
if [ -f "${SSH_ENV}" ]; then
  . "${SSH_ENV}" > /dev/null
  kill -0 $SSH_AGENT_PID 2>/dev/null || {
    start_agent
  }
else
  start_agent
fi

# some aliases
if [[ "${OSTYPE}" =~ "darwin" ]]; then
  alias ls='ls -G'
else
  alias ls='ls --color'
fi

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 e="$EDITOR"
alias em="emacsclient -a emacs -n"
alias g="git"
alias gclean="git clean -dfx"

alias gerp="grep --color=auto"
alias grep="grep --color=auto"

alias pjson="python -mjson.tool"

# tmux
alias tmux='tmux -2'

[ -f "${HOME}/.bash_local" ] && source "${HOME}/.bash_local"