Don't display errors in nushell

main
Buddy 23 hours ago
parent 05a6cd3ef2
commit 8bd003eaac

@ -25,10 +25,17 @@ overlay use work
#{{- end }} #{{- end }}
$env.config = { $env.config = {
buffer_editor: null buffer_editor: #{{ if lookPath "nvim" -}}
nvim
#{{ else if lookPath "vim" -}}
vim
#{{ else -}}
null
#{{- end }}
color_config: (use themes.nu; $themes.dark) color_config: (use themes.nu; $themes.dark)
edit_mode: emacs edit_mode: emacs
error_style: fancy #error_style: plain # or fancy
float_precision: 2 float_precision: 2
footer_mode: 25 footer_mode: 25
recursion_limit: 50 recursion_limit: 50
@ -46,7 +53,7 @@ $env.config = {
} }
display_errors: { display_errors: {
exit_code: true exit_code: false
termination_signal: true termination_signal: true
} }

Loading…
Cancel
Save