mirror of
https://tildegit.org/ben/dotfiles.git
synced 2025-03-31 10:13:21 +00:00
15 lines
396 B
Fish
15 lines
396 B
Fish
if test -d ~/Maildir
|
|
set -x MAIL ~/Maildir
|
|
end
|
|
|
|
for i in ~/bin ~/.local/bin ~/.rbenv/bin ~/.rbenv/shims ~/.cargo/bin ~/.yarn/bin ~/go/bin ~/.dotnet/tools ~/.local/share/fnm
|
|
fish_add_path --path $i
|
|
end
|
|
|
|
if status --is-interactive && type -q dotnet
|
|
complete -f -c dotnet -a "(dotnet complete (commandline -cp))"
|
|
end
|
|
|
|
status --is-login && status --is-interactive && exec byobu-launcher
|
|
|