Skip to content

Instantly share code, notes, and snippets.

@arkjun
Last active August 29, 2015 14:21
Show Gist options
  • Save arkjun/d3f6245fdadbe6fa4a9b to your computer and use it in GitHub Desktop.
Save arkjun/d3f6245fdadbe6fa4a9b to your computer and use it in GitHub Desktop.
my ubuntu dot files
alias h='history'
alias dl='docker ps -l -q'
# Invoke GnuPG-Agent the first time we login.
# Does `~/.gpg-agent-info' exist and points to gpg-agent process accepting signals?
if test -f $HOME/.gpg-agent-info && \
kill -0 `cut -d: -f 2 $HOME/.gpg-agent-info` 2>/dev/null; then
GPG_AGENT_INFO=`cat $HOME/.gpg-agent-info | cut -c 16-`
else
# No, gpg-agent not available; start gpg-agent
eval `gpg-agent --daemon --no-grab --write-env-file $HOME/.gpg-agent-info`
fi
#export GPG_TTY=`tty`
#export GPG_AGENT_INFO
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
export NVM_DIR="/home/vagrant/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
#nvm alias default iojs-v2.0.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment