Closed amtoine closed 1 year ago
i anticipate again a bit on the currently opened and draft PRs :wink:
i will very likely open one PR per bullet point below :+1:
i have a few plan, already WIPs or for the future, for the nushell config:
nushell
config.nu
e.g. with
fetch https://raw.githubusercontent.com/nushell/nushell/main/crates/nu-utils/src/sample_config/default_config.nu | save ($nu.config-path | path dirname | path join "default_config.nu")
and then only replace custom fields with
use default_config.nu * let custom_config = { ... } let-env config = ($env.config | merge $custom_config)
in config.nu, a.k.a. $nu.config-path
$nu.config-path
gpg
0.72.0
lib/applications/
lib/scripts/
$env.config.rm.always_trash
tomb
tomb manage
lib.misc.clip
ls | grid
ls
vivid
LS_COLORS
LS_THEME
DOWNLOADS_DIR
not (... | path exists)
(do -i {ls ... } | complete | get error_code) != 0
source
all of the above have been either addressed or moved to https://github.com/goatfiles/nu_scripts
i anticipate again a bit on the currently opened and draft PRs :wink:
NOTES
i will very likely open one PR per bullet point below :+1:
the plan
i have a few plan, already WIPs or for the future, for the
nushell
config:config.nu
57
e.g. with
and then only replace custom fields with
in
config.nu
, a.k.a.$nu.config-path
47
46
gpg
module to make it more structured48
0.72.0
50
lib/applications/
instead oflib/scripts/
:thinking:45
49
$env.config.rm.always_trash
optiontomb
module, mainlytomb manage
, to easily interact withtomb
s :skull:lib.misc.clip
51
ls | grid
to the aliases for a shorterls
command and run this when changing directory52
vivid
command to set theLS_COLORS
and change the theme withLS_THEME
54
DOWNLOADS_DIR
to the environment53
not (... | path exists)
instead of(do -i {ls ... } | complete | get error_code) != 0
55
source
ing them at the beginning56
58