From fda999db96a9d5c0f92072bd8f8714ae8c89f50e Mon Sep 17 00:00:00 2001 From: Natalie Marks Date: Sat, 5 Jul 2025 21:13:42 -0700 Subject: [PATCH] we stop redirecting to 2 --- nvim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nvim b/nvim index 9e71b9c..417714b 100755 --- a/nvim +++ b/nvim @@ -1,13 +1,14 @@ #!/bin/sh username="$(id -u -n)" if [ "$username" = "clo" ]; then - name="chloe"; + name="chloe" elif [ "$username" = "nmarks" ]; then - name="natalie"; + name="natalie" +elif [ "$username" = "fish" ]; then + name="julia" fi if [ -z "$name" ]; then - echo "Configure this wrapper script with your name." >2 + echo "Configure this wrapper script with your name." >&2 exit 1 fi exec nix run ".#nvim-$name" -- "$@" -