diff options
-rw-r--r-- | etc/sh/rc | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -297,6 +297,13 @@ case $- in ;; esac +# IIRC, the Guix profile should do this for f in "$HOME_ENVIRONMENT"/profile/etc/bash_completion.d/*; do . "$f" done + +# IIRC, the Guix package should do this +F="$HOME_ENVIRONMENT"/profile/share/autojump/autojump.bash +if [ -r "$F" ]; then + . "$F" +fi |