mirror of
https://github.com/nushell/nushell
synced 2024-12-26 04:53:09 +00:00
Add missing color_config settings (#14603)
# Description Fixes #14600 by adding a default value for missing keys in `default_config.nu`: * `$env.config.color_config.glob` * `$env.config.color_config.closure` # User-Facing Changes Will no longer error when accessing these keys. # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting N/A
This commit is contained in:
parent
5615d21ce9
commit
6367fb6e9e
1 changed files with 2 additions and 0 deletions
|
@ -20,6 +20,8 @@ $env.config.color_config = {
|
||||||
row_index: green_bold
|
row_index: green_bold
|
||||||
record: white
|
record: white
|
||||||
list: white
|
list: white
|
||||||
|
closure: green_bold
|
||||||
|
glob:cyan_bold
|
||||||
block: white
|
block: white
|
||||||
hints: dark_gray
|
hints: dark_gray
|
||||||
search_result: { bg: red fg: white }
|
search_result: { bg: red fg: white }
|
||||||
|
|
Loading…
Reference in a new issue