mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 09:42:27 +00:00
Move bash files
This commit is contained in:
16
bash/.bashrc
16
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
|
||||
|
||||
Reference in New Issue
Block a user