diff --git a/bash/.bash_profile b/bash/.bash_profile deleted file mode 100644 index 315e670..0000000 --- a/bash/.bash_profile +++ /dev/null @@ -1,6 +0,0 @@ -# shellcheck disable=SC1091 -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/environment" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/shell/environment" - -export HISTFILE="$XDG_STATE_HOME/bash/history" - -[ -f "$HOME/.bashrc" ] && . "$HOME/.bashrc" diff --git a/bash/.bashrc b/bash/.bashrc deleted file mode 100644 index 212d561..0000000 --- a/bash/.bashrc +++ /dev/null @@ -1,12 +0,0 @@ -PS1='%F{blue}%~ %(?.%F{green}.%F{red})%#%f ' - -# shellcheck disable=SC1091 -[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliases" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliases" - -if [ -d "${XDG_CONFIG_HOME:-$HOME/.config}/shell/functions" ]; then - for func in "${XDG_CONFIG_HOME:-$HOME/.config}"/shell/functions/*; do - # shellcheck disable=SC1090 - . "$func" - done - unset func -fi