update shell setup

Andrew Coleman 2020-05-26 13:04:49 -04:00
parent 3906c417ba
commit 9915107a43
4 changed files with 1135 additions and 9 deletions

1129
.bash_history Normal file

File diff suppressed because it is too large Load Diff

2
.bash_logout Normal file
View File

@ -0,0 +1,2 @@
# ~/.bash_logout

View File

@ -4,3 +4,5 @@
if [ -f ~/.bashrc ]; then if [ -f ~/.bashrc ]; then
. ~/.bashrc . ~/.bashrc
fi fi
export PATH="$HOME/.cargo/bin:$PATH"

11
.bashrc
View File

@ -1,21 +1,14 @@
test -f /etc/bashrc && . /etc/bashrc || true test -f /etc/bashrc && . /etc/bashrc || true
test -f /etc/bash.bashrc && . /etc/bash.bashrc || true
test -f /etc/bash_completion && . /etc/bash_completion || true test -f /etc/bash_completion && . /etc/bash_completion || true
[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh" [[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"
test -f $HOME/.bash_aliases && . $HOME/.bash_aliases || true test -f $HOME/.bash_aliases && . $HOME/.bash_aliases || true
test -f $HOME/.cargo/env && . $HOME/.cargo/env || true
export MINIKUBE_WANTUPDATENOTIFICATION=true
export MINIKUBE_WANTREPORTERRORPROMPT=false
export MINIKUBE_WANTKUBECTLDOWNLOADMSG=false
export MINIKUBE_HOME=$HOME
export MINIKUBE_DRIVER=kvm2
export CHANGE_MINIKUBE_NONE_USER=true
export GIT_MERGE_AUTOEDIT=no export GIT_MERGE_AUTOEDIT=no
export EDITOR=vim export EDITOR=vim
export PATH=$PATH:$HOME/.local/bin:$HOME/bin export PATH=$PATH:$HOME/.local/bin:$HOME/bin
test -s $HOME/cloud-stack/src/vagrant-dev-env/dev-aliases && . $HOME/cloud-stack/src/vagrant-dev-env/dev-aliases || true
HISTSIZE=5000 HISTSIZE=5000
HISTFILESIZE=10000 HISTFILESIZE=10000
HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "