From 19461a06940bd36d333733ca56d9b47acef2d32e Mon Sep 17 00:00:00 2001 From: Michael Sanders Date: Sun, 14 Feb 2021 09:15:05 -0800 Subject: [PATCH] perf(init): Prefer set -x over export for fish users (#2292) --- src/init/starship.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/init/starship.fish b/src/init/starship.fish index 230f6437e..4665b94ce 100644 --- a/src/init/starship.fish +++ b/src/init/starship.fish @@ -15,7 +15,7 @@ end set VIRTUAL_ENV_DISABLE_PROMPT 1 function fish_mode_prompt; end -export STARSHIP_SHELL="fish" +set -gx STARSHIP_SHELL="fish" # Set up the session key that will be used to store logs -export STARSHIP_SESSION_KEY=(random 10000000000000 9999999999999999) +set -gx STARSHIP_SESSION_KEY=(random 10000000000000 9999999999999999)