From e5ecd337d9cb1bf185d611919a11cb1978ec535f Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Wed, 25 Mar 2026 10:17:50 +0100 Subject: [PATCH] fish: load starship if available --- home/.config/fish/config.fish | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/.config/fish/config.fish b/home/.config/fish/config.fish index 921597a..18caa7b 100644 --- a/home/.config/fish/config.fish +++ b/home/.config/fish/config.fish @@ -26,4 +26,8 @@ if status is-interactive if type -q eza alias ls=eza end + + if type -q starship + starship init fish | source + end end