diff options
| author | Mike Vink <59492084+ivi-vink@users.noreply.github.com> | 2025-01-22 14:19:59 +0100 |
|---|---|---|
| committer | Mike Vink <59492084+ivi-vink@users.noreply.github.com> | 2025-01-22 14:19:59 +0100 |
| commit | 3000da50139ff3b044c5742140bc1ede8e3f4ad6 (patch) | |
| tree | c20dc0d4851ef2c9163392b9c5441b51a174b85d /mut/nushell/config.nu | |
| parent | 6043502305e3d5ccc6c537d4ed085d8b2454c5c8 (diff) | |
fix git and nushell
Diffstat (limited to 'mut/nushell/config.nu')
| -rw-r--r-- | mut/nushell/config.nu | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mut/nushell/config.nu b/mut/nushell/config.nu index 38decfd..d47f885 100644 --- a/mut/nushell/config.nu +++ b/mut/nushell/config.nu @@ -900,10 +900,10 @@ $env.config = { ] } -if ($"($env.HOME)/.cache/wal/sequences" | path exists) { ^cat ~/.cache/wal/sequences } +if ("~/.cache/wal/sequences" | path exists) { ^cat ~/.cache/wal/sequences } source ~/.cache/zoxide.nu -if ($"($env.HOME)/.cache/starship.nu" | path exists) { source ~/.cache/starship.nu } -if ($"($env.HOME)/.cache/carapace.nu" | path exists) { source ~/.cache/carapace.nu } +if ("~/.cache/starship.nu" | path exists) { source ~/.cache/starship.nu } +if ("~/.cache/carapace.nu" | path exists) { source ~/.cache/carapace.nu } $env.K9S_DEFAULT_PF_ADDRESS = "0.0.0.0" $env.config.show_banner = false @@ -913,7 +913,7 @@ alias k = kubectl alias d = docker alias t = terraform -let pistarchio_dir = $"($env.HOME)/Programming/Pionative/pistarchio" +let pistarchio_dir = "~/Programming/Pionative/pistarchio" | path expand $env.PISTARCHIO_STACKS_DIR = $pistarchio_dir + "/stacks" $env.PISTARCHIO_LIBRARY_DIR = $pistarchio_dir + "/library" -$env.PISTARCHIO_VENDOR_DESTINATION_DIR = $pistarchio_dir + "/../clients" +$env.PISTARCHIO_VENDOR_DESTINATION_DIR = ($pistarchio_dir + "/../clients") | path expand |
