properly set up zoxide in nu

This commit is contained in:
insects 2024-11-06 15:18:34 +01:00
parent d18b4c7971
commit ae5aa4b3b2
2 changed files with 4 additions and 13 deletions

View file

@ -1,3 +1,5 @@
source ~/.config/nushell/.zoxide.nu
def src [] { def src [] {
chezmoi apply; source $nu.env-path; source ~/.config/nushell/env.nu chezmoi apply; source $nu.env-path; source ~/.config/nushell/env.nu
} }
@ -58,3 +60,4 @@ alias gb = git branch
def gqp [] { def gqp [] {
git add --all; git commit; git push git add --all; git commit; git push
} }

View file

@ -71,16 +71,4 @@ $env.NU_PLUGIN_DIRS = [
($nu.default-config-dir | path join 'plugins') # add <nushell-config-dir>/plugins ($nu.default-config-dir | path join 'plugins') # add <nushell-config-dir>/plugins
] ]
# To add entries to PATH (on Windows you might use Path), you can use the following pattern: zoxide init nushell | save -f ~/.config/nushell/.zoxide.nu
# $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')