From ab9ff9778b21bafb3b08b94ad887bf7aac9c9d49 Mon Sep 17 00:00:00 2001 From: Giulio Malventi Date: Sat, 12 Jul 2025 17:39:14 +0200 Subject: [PATCH] Correct instructions for theming --- book/coloring_and_theming.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/coloring_and_theming.md b/book/coloring_and_theming.md index 7f23667d594..bffe0015a77 100644 --- a/book/coloring_and_theming.md +++ b/book/coloring_and_theming.md @@ -588,7 +588,7 @@ If you are working on a light background terminal, you can apply the light theme ```nu # in $nu.config-path -use config light-theme # add this line to load the theme into scope +use std/config light-theme # add this line to load the theme into scope $env.config = { # ... @@ -601,7 +601,7 @@ You can also load the dark theme. ```nu # in $nu.config-path -use config dark-theme +use std/config dark-theme $env.config = { # ...