summaryrefslogtreecommitdiffstats
path: root/src/configs/rust.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configs/rust.rs')
-rw-r--r--src/configs/rust.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/configs/rust.rs b/src/configs/rust.rs
new file mode 100644
index 000000000..2bd257588
--- /dev/null
+++ b/src/configs/rust.rs
@@ -0,0 +1,29 @@
+use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
+
+use ansi_term::{Color, Style};
+use starship_module_config_derive::ModuleConfig;
+
+#[derive(Clone, ModuleConfig)]
+pub struct RustConfig<'a> {
+ pub symbol: SegmentConfig<'a>,
+ pub version: SegmentConfig<'a>,
+ pub style: Style,
+ pub disabled: bool,
+}
+
+impl<'a> RootModuleConfig<'a> for RustConfig<'a> {
+ fn new() -> Self {
+ RustConfig {
+ symbol: SegmentConfig {
+ value: "🦀 ",
+ style: None,
+ },
+ version: SegmentConfig {
+ value: "",
+ style: None,
+ },
+ style: Color::Red.bold(),
+ disabled: false,
+ }
+ }
+}