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