From d89aed6cadd5d14a4d6c45fe303b1caa5e0c3f6f Mon Sep 17 00:00:00 2001 From: Nicole Tietz-Sokolskaya Date: Mon, 14 Dec 2020 08:55:50 -0500 Subject: [PATCH] Remove ASDF --- bash/.bash_helpers.sh | 6 ------ bash/.profile | 9 ++------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/bash/.bash_helpers.sh b/bash/.bash_helpers.sh index c232612..aef7938 100644 --- a/bash/.bash_helpers.sh +++ b/bash/.bash_helpers.sh @@ -44,12 +44,6 @@ configure_completions() { source $HOME/.install/google-cloud-sdk/completion.bash.inc source $HOME/.install/google-cloud-sdk/path.bash.inc fi - - # If asdf is installed, set up completion for it - if [[ -e "$HOME/.asdf" ]]; then - source $HOME/.asdf/asdf.sh - source $HOME/.asdf/completions/asdf.bash - fi } vimwiki() { diff --git a/bash/.profile b/bash/.profile index a226138..0d73f2f 100644 --- a/bash/.profile +++ b/bash/.profile @@ -1,6 +1,4 @@ -export SHELL=/bin/bash - source ~/.bash_helpers.sh set_prompt @@ -29,6 +27,7 @@ fi export PATH="$HOME/.local/bin:$HOME/.bin:$HOME/go/bin:$PATH" export TERM=xterm-256color +#export TERM=xterm-256color if [ -d "$HOME/.pyenv" ] && [ -z ${PYENV_SHELL+x} ] then @@ -48,11 +47,6 @@ then export PATH="/home/nicholas/.yarn/bin:$PATH" fi -if [ -d "$HOME/.asdf" ] -then - . $HOME/.asdf/asdf.sh -fi - alias iex="iex --erl \"-kernel shell_history enabled\"" if [ -f /usr/local/etc/bash_completion ] @@ -63,3 +57,4 @@ fi export PATH="$HOME/.cargo/bin:$PATH" export PATH="$HOME/.poetry/bin:$PATH" +export SHELL=/bin/bash