scripts/applications/fish

17 lines
203 B
Plaintext

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