From ae5aa4b3b2638509af4dd63effe2189dcc9ff644 Mon Sep 17 00:00:00 2001 From: liv Date: Wed, 6 Nov 2024 15:18:34 +0100 Subject: [PATCH] properly set up zoxide in nu --- dot_config/nushell/config.nu | 3 +++ dot_config/nushell/env.nu | 14 +------------- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/dot_config/nushell/config.nu b/dot_config/nushell/config.nu index c072138..3838917 100644 --- a/dot_config/nushell/config.nu +++ b/dot_config/nushell/config.nu @@ -1,3 +1,5 @@ +source ~/.config/nushell/.zoxide.nu + def src [] { chezmoi apply; source $nu.env-path; source ~/.config/nushell/env.nu } @@ -58,3 +60,4 @@ alias gb = git branch def gqp [] { git add --all; git commit; git push } + diff --git a/dot_config/nushell/env.nu b/dot_config/nushell/env.nu index 2e7f06e..2e49bab 100644 --- a/dot_config/nushell/env.nu +++ b/dot_config/nushell/env.nu @@ -71,16 +71,4 @@ $env.NU_PLUGIN_DIRS = [ ($nu.default-config-dir | path join 'plugins') # add /plugins ] -# To add entries to PATH (on Windows you might use Path), you can use the following pattern: -# $env.PATH = ($env.PATH | split row (char esep) | prepend '/some/path') -# An alternate way to add entries to $env.PATH is to use the custom command `path add` -# which is built into the nushell stdlib: -# use std "path add" -# $env.PATH = ($env.PATH | split row (char esep)) -# path add /some/path -# path add ($env.CARGO_HOME | path join "bin") -# path add ($env.HOME | path join ".local" "bin") -# $env.PATH = ($env.PATH | uniq) - -# To load from a custom file you can use: -# source ($nu.default-config-dir | path join 'custom.nu') +zoxide init nushell | save -f ~/.config/nushell/.zoxide.nu