diff --git a/bash/.bashrc b/bash/.bashrc index c310870..bed223c 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -6,23 +6,23 @@ if [ -f /etc/bashrc ]; then fi # Source exports, if it exists -if [ -f $HOME/.bash/exports.bash ]; then - source $HOME/.bash/exports.bash +if [ -f $HOME/.config/bash/exports.bash ]; then + source $HOME/.config/bash/exports.bash fi # Source functions, if it exists -if [ -f $HOME/.bash/functions.bash ]; then - source $HOME/.bash/functions.bash +if [ -f $HOME/.config/bash/functions.bash ]; then + source $HOME/.config/bash/functions.bash fi # Source aliases, if it exists -if [ -f $HOME/.bash/aliases.bash ]; then - source $HOME/.bash/aliases.bash +if [ -f $HOME/.config/bash/aliases.bash ]; then + source $HOME/.config/bash/aliases.bash fi # Source completions, if it exists -if [ -f $HOME/.bash/completions.bash ]; then - source $HOME/.bash/completions.bash +if [ -f $HOME/.config/bash/completions.bash ]; then + source $HOME/.config/bash/completions.bash fi # Homebrew diff --git a/bash/.bash/aliases.bash b/bash/.config/bash/aliases.bash similarity index 100% rename from bash/.bash/aliases.bash rename to bash/.config/bash/aliases.bash diff --git a/bash/.bash/completions.bash b/bash/.config/bash/completions.bash similarity index 100% rename from bash/.bash/completions.bash rename to bash/.config/bash/completions.bash diff --git a/bash/.bash/exports.bash b/bash/.config/bash/exports.bash similarity index 100% rename from bash/.bash/exports.bash rename to bash/.config/bash/exports.bash diff --git a/bash/.bash/functions.bash b/bash/.config/bash/functions.bash similarity index 100% rename from bash/.bash/functions.bash rename to bash/.config/bash/functions.bash