From 29591c97a7a64156a3de7185a5dfd9d0a9f6b062 Mon Sep 17 00:00:00 2001 From: stfacc Date: Thu, 2 Nov 2023 19:59:17 +0100 Subject: [PATCH] Add "shape_keyword" to default config (#10922) Keep it in sync with Rust code. Mainly so that people know they can style keywords. I discovered this while trying to change color of "else". --- crates/nu-utils/src/sample_config/default_config.nu | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/nu-utils/src/sample_config/default_config.nu b/crates/nu-utils/src/sample_config/default_config.nu index a27b9f581..f281d2696 100644 --- a/crates/nu-utils/src/sample_config/default_config.nu +++ b/crates/nu-utils/src/sample_config/default_config.nu @@ -50,6 +50,7 @@ let dark_theme = { shape_globpattern: cyan_bold shape_int: purple_bold shape_internalcall: cyan_bold + shape_keyword: cyan_bold shape_list: cyan_bold shape_literal: blue shape_match_pattern: green @@ -113,6 +114,7 @@ let light_theme = { shape_globpattern: cyan_bold shape_int: purple_bold shape_internalcall: cyan_bold + shape_keyword: cyan_bold shape_list: cyan_bold shape_literal: blue shape_match_pattern: green