update shell setup
parent
3906c417ba
commit
9915107a43
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,2 @@
|
||||||
|
# ~/.bash_logout
|
||||||
|
|
|
@ -4,3 +4,5 @@
|
||||||
if [ -f ~/.bashrc ]; then
|
if [ -f ~/.bashrc ]; then
|
||||||
. ~/.bashrc
|
. ~/.bashrc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
|
|
11
.bashrc
11
.bashrc
|
@ -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 "
|
||||||
|
|
Reference in New Issue