diff options
| author | EuAndreh <eu@euandre.org> | 2022-08-24 19:32:53 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2022-08-24 19:32:53 -0300 |
| commit | 4b3849eb18a95d93240258262350e8fcf1b63dd5 (patch) | |
| tree | 44dc4b2e894adda1e28ad788e3a72a9e60d4dd86 /etc | |
| parent | etc/sh/rc: Separate interactive from non-interactive section with an early re... (diff) | |
| download | dotfiles-4b3849eb18a95d93240258262350e8fcf1b63dd5.tar.gz dotfiles-4b3849eb18a95d93240258262350e8fcf1b63dd5.tar.xz | |
etc/sh/rc: Load autojump code
Diffstat (limited to 'etc')
| -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 |
