summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Christoph Ebersbach <jceb@e-jc.de>2021-02-15 20:10:08 +0100
committerGitHub <noreply@github.com>2021-02-15 14:10:08 -0500
commit6bd4e724e9fdddd355540bf25ff7ae8fea9e3ed6 (patch)
tree9444ab14aebb2d790f93e32e3674616a55f30e1a /src
parentd0951db35aaa46b21a604a08a96c878a4da72c87 (diff)
fix: correct fish syntax error when setting variables (#2320)
Diffstat (limited to 'src')
-rw-r--r--src/init/starship.fish4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init/starship.fish b/src/init/starship.fish
index 4665b94ce..595e16b33 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
-set -gx STARSHIP_SHELL="fish"
+set -gx STARSHIP_SHELL "fish"
# Set up the session key that will be used to store logs
-set -gx STARSHIP_SESSION_KEY=(random 10000000000000 9999999999999999)
+set -gx STARSHIP_SESSION_KEY (random 10000000000000 9999999999999999)