scripts/applications/fish

17 lines
231 B
Plaintext

if status is-interactive
and not status is-login
and test -z "$TMUX"
exec tmux new-session
end
for f in (find ~/src/scripts/fish -type f -name '*.fish')
source $f
end
if test -f ~/.cargo/env
source ~/.cargo/env
end
## EOF