scripts/applications/fish

17 lines
213 B
Plaintext
Raw Normal View History

if status is-interactive
and not status is-login
and test -z "$TMUX"
exec tmux new-session
end
2019-06-28 17:33:53 -07:00
for f in ~/src/scripts/fish/*
source $f
end
2019-06-18 09:13:09 -07:00
2019-06-28 17:35:31 -07:00
if test -f ~/.cargo/env
source ~/.cargo/env
end
## EOF