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
|
2011-06-25 17:37:31 +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
|
|
|
|
2018-06-08 13:36:46 +00:00
|
|
|
alias notes="vim ~/notes.md"
|
|
|
|
|
2011-06-28 00:00:15 +00:00
|
|
|
# default editor
|
|
|
|
export EDITOR=vim
|
|
|
|
|
|
|
|
# set history
|
2018-06-13 15:16:11 +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)
|
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
|
|
|
|
eval "$(pyenv init -)"
|
2018-06-13 15:16:11 +00:00
|
|
|
#eval "$(pyenv virtualenv-init -)"
|
2017-09-13 02:15:25 +00:00
|
|
|
|
2017-09-21 13:20:03 +00:00
|
|
|
source $HOME/.install/google-cloud-sdk/completion.bash.inc
|
|
|
|
source $HOME/.install/google-cloud-sdk/path.bash.inc
|
|
|
|
|
2018-03-12 16:01:41 +00:00
|
|
|
alias iex="iex --erl \"-kernel shell_history enabled\""
|
|
|
|
|
2018-05-28 21:02:56 +00:00
|
|
|
if [ -f /usr/local/etc/bash_completion ]
|
|
|
|
then
|
|
|
|
. /usr/local/etc/bash_completion
|
|
|
|
fi
|
2017-09-15 14:49:29 +00:00
|
|
|
|