Created
June 1, 2025 08:55
-
-
Save jim-ec/2eb303aa4e7bce9ed77308cd106af43f to your computer and use it in GitHub Desktop.
NuShell Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std/util 'path add' | |
path add /opt/homebrew/bin | |
path add ~/.cargo/bin | |
path add ~/bin | |
path add ~/.deno/bin | |
path add /usr/local/bin | |
$env.config.buffer_editor = 'hx' | |
def l [file?:path] { | |
if $file != null { | |
ls $file | |
} else { | |
ls | |
} | get name | |
} | |
$env.config.show_banner = false | |
$env.lang = 'en_US.UTF-8' | |
source ~/dev/nu_scripts/custom-completions/cargo/cargo-completions.nu | |
source ~/dev/nu_scripts/custom-completions/rustup/rustup-completions.nu | |
source ~/dev/nu_scripts/custom-completions/git/git-completions.nu | |
source ~/dev/nu_scripts/custom-completions/npm/npm-completions.nu | |
source ~/dev/nu_scripts/custom-completions/pnpm/pnpm-completions.nu | |
source ~/dev/nu_scripts/custom-completions/make/make-completions.nu | |
source ~/dev/nu_scripts/custom-completions/docker/docker-completions.nu | |
source ~/dev/nu_scripts/custom-completions/curl/curl-completions.nu | |
source ~/dev/nu_scripts/custom-completions/ssh/ssh-completions.nu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment