mirror of
https://github.com/nikdoof/dotfiles.git
synced 2026-01-30 02:48:15 +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
|
fi
|
||||||
|
|
||||||
# Source exports, if it exists
|
# Source exports, if it exists
|
||||||
if [ -f $HOME/.bash/exports.bash ]; then
|
if [ -f $HOME/.config/bash/exports.bash ]; then
|
||||||
source $HOME/.bash/exports.bash
|
source $HOME/.config/bash/exports.bash
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Source functions, if it exists
|
# Source functions, if it exists
|
||||||
if [ -f $HOME/.bash/functions.bash ]; then
|
if [ -f $HOME/.config/bash/functions.bash ]; then
|
||||||
source $HOME/.bash/functions.bash
|
source $HOME/.config/bash/functions.bash
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Source aliases, if it exists
|
# Source aliases, if it exists
|
||||||
if [ -f $HOME/.bash/aliases.bash ]; then
|
if [ -f $HOME/.config/bash/aliases.bash ]; then
|
||||||
source $HOME/.bash/aliases.bash
|
source $HOME/.config/bash/aliases.bash
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Source completions, if it exists
|
# Source completions, if it exists
|
||||||
if [ -f $HOME/.bash/completions.bash ]; then
|
if [ -f $HOME/.config/bash/completions.bash ]; then
|
||||||
source $HOME/.bash/completions.bash
|
source $HOME/.config/bash/completions.bash
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Homebrew
|
# Homebrew
|
||||||
|
|||||||
Reference in New Issue
Block a user