dotfiles/nushell/config/config.nu

17 lines
488 B
Plaintext

# Change default config
$env.config.keybindings = (echo $env.config.keybindings | append {
name: newline_or_run_command_2
modifier: CONTROL
keycode: char_j
mode: emacs
event: {send: enter}
})
$env.config.show_banner = false
$env.config.use_grid_icons = false
$env.config.cursor_shape.emacs = block
$env.config.history.max_size = 1_000_000_000_000_000
$env.config.history.file_format = "sqlite"
$env.config.history.isolation = true
$env.config.filesize.metric = false