From b759c1ba26fd5669d6a05307c1992916d2e56603 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 12 Jul 2025 16:47:27 +0300 Subject: [PATCH] nushell: set table header color to yellow --- modules/common/nushell/config.nu | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/common/nushell/config.nu b/modules/common/nushell/config.nu index ef02e6e..0342ccc 100644 --- a/modules/common/nushell/config.nu +++ b/modules/common/nushell/config.nu @@ -277,6 +277,9 @@ $env.config.color_config.string = {|| } } +$env.config.color_config.row_index = "light_yellow_bold" +$env.config.color_config.header = "light_yellow_bold" + module dump { def site-path []: nothing -> path { $env.HOME | path join "Projects" "site"