From c242b0f28c77bf725f2fd6c2e0407e8bb6d8613c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Du=C3=9Fin?= Date: Thu, 27 Mar 2025 15:47:09 +0300 Subject: [PATCH] change repos folder to a dev folder --- nushell/config.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nushell/config.nu b/nushell/config.nu index 0d32c35..eaa15a2 100644 --- a/nushell/config.nu +++ b/nushell/config.nu @@ -19,7 +19,7 @@ def lt [] { ls | sort-by type name -i | grid -c | str trim } alias j = joshuto alias e = hx . -alias code = cd /Barium/repos/ +alias code = cd ~/dev/ # Go to the repository with the name and start a nix development shell there. # If no argument is given a nix development shell will be started in the current dir. @@ -28,7 +28,7 @@ def --env dev [project?: string, --nonix (-n)] { # Switch directory to the project in case a name was passed if $project != null { - let path = $"/Barium/repos/($project)" + let path = $"/dev/($project)" if ($path | path exists) { cd $path } else {