summaryrefslogtreecommitdiffstats
path: root/src/configs/nix_shell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configs/nix_shell.rs')
-rw-r--r--src/configs/nix_shell.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/configs/nix_shell.rs b/src/configs/nix_shell.rs
index d5316b6ae..214277fa3 100644
--- a/src/configs/nix_shell.rs
+++ b/src/configs/nix_shell.rs
@@ -9,6 +9,7 @@ pub struct NixShellConfig<'a> {
pub impure_msg: SegmentConfig<'a>,
pub pure_msg: SegmentConfig<'a>,
pub style: Style,
+ pub symbol: SegmentConfig<'a>,
pub disabled: bool,
}
@@ -18,7 +19,8 @@ impl<'a> RootModuleConfig<'a> for NixShellConfig<'a> {
use_name: false,
impure_msg: SegmentConfig::new("impure"),
pure_msg: SegmentConfig::new("pure"),
- style: Color::Red.bold(),
+ style: Color::Blue.bold(),
+ symbol: SegmentConfig::new("❄️ "),
disabled: false,
}
}