dotfiles/.config/fish/conf.d/import_sources.fish
mitchell e984a0dc40 feat(dotfiles): add pnpm support, virtualization aliases, and ssh agent hook
- Add aliases for virt-viewer, virt-install, and virsh
- Move firewall-cmd alias to Linux-specific block
- Update fish_add_path to explicitly use --global scope
2026-06-11 18:38:00 -04:00

22 lines
478 B
Fish

ssh_agent_startup
# ASDF config start
if test -z $ASDF_DATA_DIR
set _asdf_shims "$HOME/.asdf/shims"
else
set _asdf_shims "$ASDF_DATA_DIR/shims"
end
fish_add_path $_asdf_shims
set --erase _asdf_shims
# ASDF config end
test -e /opt/homebrew/bin/brew
and /opt/homebrew/bin/brew shellenv | source -
if status is-interactive
command -q zoxide; and zoxide init fish | source
command -q fzf; and fzf --fish | source
end
command -q pyenv; and pyenv init - | source