Browse Source

Delete ubuntu shell, delete forced XDG_CONFIG_HOME variable

master
Taylor Bockman 3 years ago
parent
commit
01f4c7930d
  1. 5
      dotfiles/bash/bashrc
  2. 6
      ubuntu/shell.sh

5
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 ------------#

6
ubuntu/shell.sh

@ -1,6 +0,0 @@
# Shell
echo "Installing shells..."
sudo apt-get -qq -y install zsh
echo "Changing shell to zsh..."
chsh -s $(which zsh)
Loading…
Cancel
Save