2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
# The best editor
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2015-03-06 17:40:44 +00:00
|
|
|
alias vi=vim
|
2014-11-15 17:05:36 +00:00
|
|
|
export EDITOR=vim
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
|
2015-01-14 11:12:25 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Make less use visual bell
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
export LESS="-qr"
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
# Update the path with local overrides
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2015-03-26 18:12:00 +00:00
|
|
|
export PATH=~/bin:/usr/local/bin:/usr/local/sbin:${PATH}
|
2015-07-14 09:37:02 +01:00
|
|
|
|
|
|
|
# coreutils
|
|
|
|
COREUTILS=$(brew --prefix coreutils 2>/dev/null)
|
|
|
|
if [ -s "${COREUTILS}" ]; then
|
|
|
|
export PATH=${COREUTILS}/libexec/gnubin:${PATH}
|
|
|
|
fi
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# A useful prompt
|
|
|
|
#--------------------------------------------------------------------------------
|
2015-09-14 18:26:36 +01:00
|
|
|
export PS1="[\u@\h \W \[\033[32m\]\$(git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ <\1>/')\[\033[00m\]]\\$ "
|
2014-12-05 18:33:16 +00:00
|
|
|
export PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Record history for longer and more dynamically
|
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
# Large history buffer
|
|
|
|
export HISTSIZE=9999
|
|
|
|
export HISTFILESIZE=9999
|
|
|
|
|
|
|
|
# Avoid duplicates in the history...
|
|
|
|
export HISTCONTROL=ignoredups:erasedups
|
|
|
|
|
|
|
|
# Append history entries...
|
|
|
|
shopt -s histappend
|
|
|
|
|
|
|
|
# After each command, save and reload history
|
2015-05-20 20:43:57 +01:00
|
|
|
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a"
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2015-01-29 10:04:38 +00:00
|
|
|
# OS X aliases
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-12-07 13:13:55 +00:00
|
|
|
if [ $(uname -s) = "Darwin" ]; then
|
|
|
|
alias top='top -u'
|
2015-02-04 10:54:13 +00:00
|
|
|
alias ll='ls -l'
|
2014-12-07 13:13:55 +00:00
|
|
|
fi
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
# Git aliases
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
alias gitx='open -a GitX .'
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-15 17:05:36 +00:00
|
|
|
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Set up GOPATH for Go development
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
export GOPATH=${HOME}/src/go
|
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-11 21:01:06 +00:00
|
|
|
|
2015-10-26 15:30:01 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Rebind CTRL-T to search forward in history
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
bind "\C-t":forward-search-history
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2015-01-27 14:41:16 +00:00
|
|
|
# Add bash completion scripts
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
for FILE in ~/.bash/auto_complete.d/*; do source ${FILE}; done
|
2014-11-11 21:13:52 +00:00
|
|
|
#--------------------------------------------------------------------------------
|
2014-11-12 16:58:37 +00:00
|
|
|
|
2015-09-29 19:41:04 +01:00
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
# Run an SSH agent, if possible
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
SSH_ENV="$HOME/.ssh/environment"
|
|
|
|
|
|
|
|
function start_agent {
|
|
|
|
echo -n "Initialising new SSH agent... "
|
|
|
|
/usr/bin/ssh-agent 2> /dev/null | sed 's/^echo/#echo/' > "${SSH_ENV}"
|
|
|
|
pgrep ssh-agent > /dev/null && echo "succeeded" || echo "failed"
|
|
|
|
chmod 0600 "${SSH_ENV}"
|
|
|
|
. "${SSH_ENV}" > /dev/null
|
|
|
|
/usr/bin/ssh-add ~/.ssh/scott_dsa
|
|
|
|
}
|
|
|
|
|
2015-09-29 19:49:49 +01:00
|
|
|
# Check if we already have an agent running and sourced
|
2015-10-13 19:54:30 +01:00
|
|
|
if [ -z "${SSH_AUTH_SOCK}" -a -s "${PS1}" ]; then
|
2015-09-29 19:49:49 +01:00
|
|
|
# Source SSH settings, if applicable
|
|
|
|
if [ -f "${SSH_ENV}" ]; then
|
|
|
|
. "${SSH_ENV}" > /dev/null
|
|
|
|
pgrep ssh-agent | grep -E "^${SSH_AGENT_PID}" > /dev/null || {
|
|
|
|
start_agent
|
|
|
|
}
|
|
|
|
else
|
|
|
|
start_agent
|
|
|
|
fi
|
2015-09-29 19:41:04 +01:00
|
|
|
fi
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
|
2014-11-12 16:58:37 +00:00
|
|
|
[ -f ~/.bashrc_local ] && source ~/.bashrc_local
|