dotfiles/.config/fish/functions/import_sources.fish

12 lines
586 B
Fish
Raw Permalink Normal View History

function import_sources -a uname -d 'Loads any additional fish files needed at init.'
2021-01-18 04:47:57 +00:00
test -f ~/.asdf/plugins/dotnet-core/set-dotnet-home.fish; and source ~/.asdf/plugins/dotnet-core/set-dotnet-home.fish
2024-06-28 23:03:26 +00:00
test -e ~/.asdf/asdf.fish
and source ~/.asdf/asdf.fish
and mkdir -p ~/.config/fish/completions
and ln -sf ~/.asdf/completions/asdf.fish ~/.config/fish/completions
# The next line updates PATH for the Google Cloud SDK.
# if test -f '/Users/m/Documents/google-cloud-sdk/path.fish.inc'; source '/Users/m/Documents/google-cloud-sdk/path.fish.inc'; end
end