config/bash/.profile

43 lines
914 B
Plaintext
Raw Normal View History

2011-11-22 02:32:50 +00:00
export SHELL=/bin/bash
source ~/.bash_helpers.sh
2011-06-26 03:03:37 +00:00
set_prompt
configure_ls
configure_completions
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
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
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
export TERM=xterm-256color
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 -)"
source $HOME/.install/google-cloud-sdk/completion.bash.inc
source $HOME/.install/google-cloud-sdk/path.bash.inc
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