dotfiles/dot_config/fish/config.fish
2025-02-12 13:40:24 +08:00

24 lines
422 B
Fish

# disable fish greeting
set fish_greeting
# nix
if command -v nix >/dev/null
fish_add_path ~/.nix-profile/bin
end
# direnv
if command -v direnv >/dev/null
direnv hook fish | source
set -g direnv_fish_mode eval_on_arrow
end
# starship
if command -v starship >/dev/null
source (starship init fish --print-full-init | psub)
end
# zoxide
if command -v zoxide >/dev/null
zoxide init fish | source
end