1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

reorganize site in preparation for beta and releaes (#161)

This commit is contained in:
Darren Schroeder 2022-02-25 13:10:38 -06:00 committed by GitHub
parent 7b76a8e662
commit ca89da5242
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
155 changed files with 1402 additions and 763 deletions

51
example-config/init.nu Normal file
View file

@ -0,0 +1,51 @@
# ~/.config/nushell/init.nu
#
# Init module that exports commands and environment variables wanted at startup
# commands
export def egd [...rest] {
with-env [GIT_EXTERNAL_DIFF 'difft'] { git diff $rest }
}
# env
export env LS_COLORS {
[
"di=01;34;2;102;217;239"
"or=00;40;31"
"mi=00;40;31"
"ln=00;36"
"ex=00;32"
] | str collect (char env_sep)
}
export env BROWSER { "firefox" }
export env CARGO_TARGET_DIR { "~/.cargo/target" }
export env EDITOR { "nvim" }
export env VISUAL { "nvim" }
export env PAGER { "less" }
export env SHELL { "~/.cargo/bin/nu" }
export env JULIA_NUM_THREADS { nproc }
export env HOSTNAME { hostname | split row '.' | first | str trim }
export env SHOW_USR { "true" }
# prompt
export env PROMPT_COMMAND { "build-prompt" }
export def build-prompt [] {
let usr-str = (if $env.SHOW_USR == "true" {
[
$env.USER
'@'
$env.HOSTNAME
':'
] | str collect
} else {
''
})
let pwd-str = (if (pwd | str starts-with $env.HOME).0 {
(pwd | str find-replace $env.HOME '~' | str trim).0
} else {
pwd
})
[ $usr-str $pwd-str ' ' ] | str collect
}