diff options
| author | twells46 <173561638+twells46@users.noreply.github.com> | 2025-12-31 13:28:05 -0600 |
|---|---|---|
| committer | twells46 <173561638+twells46@users.noreply.github.com> | 2025-12-31 13:28:05 -0600 |
| commit | 2140ab51deed88e90eafebf9520fa5f9995dc7c9 (patch) | |
| tree | 03cf1dcd2900495c1efb79aaa85f3254ecd5fb87 /dot_config/nushell/config.nu | |
| parent | ff8f50638e4b17a9d7cc88d2f0d9560b7effce39 (diff) | |
Migrate from stow
Diffstat (limited to 'dot_config/nushell/config.nu')
| -rw-r--r-- | dot_config/nushell/config.nu | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dot_config/nushell/config.nu b/dot_config/nushell/config.nu new file mode 100644 index 0000000..4e49315 --- /dev/null +++ b/dot_config/nushell/config.nu @@ -0,0 +1,26 @@ +# config.nu +# +# Installed by: +# version = "0.109.1" +# +# This file is used to override default Nushell settings, define +# (or import) custom commands, or run any other startup tasks. +# See https://www.nushell.sh/book/configuration.html +# +# Nushell sets "sensible defaults" for most configuration settings, +# so your `config.nu` only needs to override these defaults if desired. +# +# You can open this file in your default editor using: +# config nu +# +# You can also pretty-print and page through the documentation for configuration +# options using: +# config nu --doc | nu-highlight | less -R + +$env.config.history.file_format = "sqlite" + +$env.config.show_banner = false + +$env.PROMPT_COMMAND_RIGHT = "" + +$env.LS_COLORS = (vivid generate catppuccin-latte) |