Change $nothing to null in nushell config

main
trivernis 1 year ago
parent fcd038080e
commit a4243eb412
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: 7E6D18B61C8D2F4B

@ -136,9 +136,7 @@ $env.config = {
always_trash: false always_trash: false
} }
# settings for the cd command # settings for the cd command
cd: { cd: {}
abbreviations: false # set to true to allow you to do things like cd s/o/f and nushell expand it to cd some/other/folder
}
# history settings # history settings
history: { history: {
max_size: 10000 # Session has to be reloaded for this to take effect max_size: 10000 # Session has to be reloaded for this to take effect
@ -159,7 +157,7 @@ $env.config = {
external: { external: {
enable: true # set to false to prevent nushell looking into $env.PATH to find more suggestions, `false` recommended for WSL users as this look up my be very slow enable: true # set to false to prevent nushell looking into $env.PATH to find more suggestions, `false` recommended for WSL users as this look up my be very slow
max_results: 100 # setting it lower can improve completion performance at the cost of omitting some options max_results: 100 # setting it lower can improve completion performance at the cost of omitting some options
completer: $nothing # check 'carapace_completer' above to as example completer: null # check 'carapace_completer' above to as example
} }
} }
# table settings # table settings
@ -179,14 +177,14 @@ $env.config = {
hooks: { hooks: {
pre_prompt: [{|| pre_prompt: [{||
$nothing # replace with source code to run before the prompt is shown null # replace with source code to run before the prompt is shown
}] }]
pre_execution: [{|| pre_execution: [{||
$nothing # replace with source code to run before the repl input is run null # replace with source code to run before the repl input is run
}] }]
env_change: { env_change: {
PWD: [{|before, after| PWD: [{|before, after|
$nothing # replace with source code to run if the PWD environment is different since the last repl input null # replace with source code to run if the PWD environment is different since the last repl input
}] }]
} }
} }
@ -425,8 +423,5 @@ source ~/.config/nushell/starship.nu
# aliases # aliases
source ~/.config/nushell/aliases.nu source ~/.config/nushell/aliases.nu
# zoxide
source ~/.config/nushell/zoxide.nu
# motd # motd
source ~/.config/nushell/motd.nu source ~/.config/nushell/motd.nu

Loading…
Cancel
Save