From 65d46bdfd795dfbb72875158b4fe5d7335b10d0f Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 8 Apr 2023 14:24:10 -0400 Subject: [PATCH] chore: add new alias, remove starship init --- home/nushell/config.nu | 1 + home/nushell/env.nu | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/home/nushell/config.nu b/home/nushell/config.nu index d33d7e9..2e721f0 100755 --- a/home/nushell/config.nu +++ b/home/nushell/config.nu @@ -6,6 +6,7 @@ alias zj = zellij alias zjd = zellij --layout ../.config/zellij/snowflake.kdl alias zjs = zellij --layout ./config/zellij/ssh.kdl alias lg = lazygit +alias la = ls -a alias cat = bat module completions { diff --git a/home/nushell/env.nu b/home/nushell/env.nu index f814424..583b7c9 100755 --- a/home/nushell/env.nu +++ b/home/nushell/env.nu @@ -57,9 +57,5 @@ let-env NU_LIB_DIRS = [ let-env NU_PLUGIN_DIRS = [ ($nu.config-path | path dirname | path join 'plugins') ] - -mkdir ~/.cache/starship -starship init nu | save -f ~/.cache/starship/init.nu - # To add entries to PATH (on Windows you might use Path), you can use the following pattern: # let-env PATH = ($env.PATH | split row (char esep) | prepend '/some/path')