aboutsummaryrefslogtreecommitdiff
path: root/dot_config/nushell/config.nu
blob: 4e493152819f227b09d8a84299750337228c51c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)