diff options
author | Alan Pearce | 2023-08-22 19:25:58 +0200 |
---|---|---|
committer | Alan Pearce | 2023-08-22 19:25:58 +0200 |
commit | 602d1c03116d6bc6f3f11dc01094d7257405a777 (patch) | |
tree | 39784ba96c22697218e50019f4efe2ddfb2e8423 | |
parent | d6ff15479a8863724c28f94ab5cdc216a2b897c8 (diff) | |
download | nixfiles-602d1c03116d6bc6f3f11dc01094d7257405a777.tar.lz nixfiles-602d1c03116d6bc6f3f11dc01094d7257405a777.tar.zst nixfiles-602d1c03116d6bc6f3f11dc01094d7257405a777.zip |
Fix incorrect shell syntax
-rw-r--r-- | user/settings/fish.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/user/settings/fish.nix b/user/settings/fish.nix index e9e7de82..f5b299eb 100644 --- a/user/settings/fish.nix +++ b/user/settings/fish.nix @@ -38,9 +38,8 @@ ''; shellInit = '' if test -n $KITTY_INSTALLATION_DIR - then set -x KITTY_SHELL_INTEGRATION no-cursor - fi + end ''; functions = { ds = "du -hd1 $argv[1] | sort -h"; |