From 01f4c7930dbbb35f0b55f29a313b7931481de15a Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Sat, 22 May 2021 09:25:50 -0700 Subject: [PATCH] Delete ubuntu shell, delete forced XDG_CONFIG_HOME variable --- dotfiles/bash/bashrc | 5 +---- ubuntu/shell.sh | 6 ------ 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100755 ubuntu/shell.sh diff --git a/dotfiles/bash/bashrc b/dotfiles/bash/bashrc index 499336a..86abed5 100644 --- a/dotfiles/bash/bashrc +++ b/dotfiles/bash/bashrc @@ -24,7 +24,7 @@ if [[ -f $HOME/.bash_private ]]; then fi if [ -f $HOME/.inputrc ]; then - bind -f $HOME/.inputrc + source $HOME/.inputrc else echo "No .inputrc detected" fi @@ -135,9 +135,6 @@ export HISTCONTROL=ignoredups # If go is installed, set the $GOPATH to the projects directory created above. if which go > /dev/null; then export GOPATH=$HOME/projects/go; fi -# For emacs 27.1+. This way no matter what config changes or version of emacs -# I find myself on it will always work the same. -export XDG_CONFIG_HOME="${HOME}/.emacs.d" # ------------ END EXPORTS ------------# diff --git a/ubuntu/shell.sh b/ubuntu/shell.sh deleted file mode 100755 index 60af2b2..0000000 --- a/ubuntu/shell.sh +++ /dev/null @@ -1,6 +0,0 @@ -# Shell -echo "Installing shells..." -sudo apt-get -qq -y install zsh - -echo "Changing shell to zsh..." -chsh -s $(which zsh)