2011-06-25 17:37:31 +00:00
|
|
|
|
2011-11-22 02:32:50 +00:00
|
|
|
export SHELL=/bin/bash
|
|
|
|
|
2017-11-23 20:54:58 +00:00
|
|
|
source ~/.bash_helpers.sh
|
2016-12-03 17:42:44 +00:00
|
|
|
|
2011-06-26 03:03:37 +00:00
|
|
|
set_prompt
|
2017-11-23 20:54:58 +00:00
|
|
|
configure_ls
|
|
|
|
configure_completions
|
2015-09-08 15:24:29 +00:00
|
|
|
|
2011-06-28 00:00:15 +00:00
|
|
|
# default editor
|
|
|
|
export EDITOR=vim
|
|
|
|
|
|
|
|
# set history
|
2018-06-14 01:17:17 +00:00
|
|
|
export HISTSIZE=1000 # very large history
|
2017-11-23 20:54:58 +00:00
|
|
|
export HISTFILESIZE=10000 # very large history
|
|
|
|
export HISTCONTROL=ignoreboth:erasedups # ignore duplicate history entries
|
|
|
|
shopt -s histappend # append to the history when the shell exits (instead of overwriting)
|
|
|
|
# save and reload history each time a command is run, to share history between shells
|
2018-06-14 01:17:17 +00:00
|
|
|
|
|
|
|
alias ssh-proxy="ssh -D 8080 galaxy"
|
2011-06-28 00:00:15 +00:00
|
|
|
|
2011-11-22 02:26:43 +00:00
|
|
|
# disable messaging
|
2012-04-21 23:13:09 +00:00
|
|
|
if `tty -s`; then
|
|
|
|
mesg n
|
|
|
|
fi
|
2011-11-22 02:26:43 +00:00
|
|
|
|
2017-03-13 15:49:52 +00:00
|
|
|
export PATH=$PATH:~/.bin
|
2016-02-17 04:24:45 +00:00
|
|
|
export TERM=xterm-256color
|
2016-02-04 04:42:28 +00:00
|
|
|
|
2018-05-28 21:02:56 +00:00
|
|
|
# Installed with https://github.com/pyenv/pyenv-installer
|
|
|
|
export PATH="/home/nicholas/.pyenv/bin:$PATH"
|
|
|
|
eval "$(pyenv init -)"
|
|
|
|
eval "$(pyenv virtualenv-init -)"
|
|
|
|
|
|
|
|
if [ -f /usr/local/etc/bash_completion ]
|
|
|
|
then
|
|
|
|
. /usr/local/etc/bash_completion
|
|
|
|
fi
|
2017-09-15 14:49:29 +00:00
|
|
|
|