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)