diff --git a/tree/.config/nushell/env.nu b/tree/.config/nushell/env.nu index 4efd4bc..728a7fb 100644 --- a/tree/.config/nushell/env.nu +++ b/tree/.config/nushell/env.nu @@ -62,5 +62,5 @@ let-env NU_PLUGIN_DIRS = [ # let-env PATH = ($env.PATH | split row (char esep) | prepend '/some/path') mkdir ~/.cache/starship -starship init nu | save ~/.cache/starship/init.nu -zoxide init nushell | save ~/.cache/zoxide.nu +starship init nu | save -f ~/.cache/starship/init.nu +zoxide init nushell | save -f ~/.cache/zoxide.nu diff --git a/tree/.local/nu/readelf.nu b/tree/.local/nu/readelf.nu index 585e17f..d638906 100755 --- a/tree/.local/nu/readelf.nu +++ b/tree/.local/nu/readelf.nu @@ -31,6 +31,6 @@ def elf-symbols [ let section_start = ($section | get addr) let section_end = ($section_start + ($section | get size)) - $symbols | where addr >= $section_start && addr < $section_end + $symbols | where addr >= $section_start and addr < $section_end } }