summaryrefslogtreecommitdiffstats
path: root/src/configs/python.rs
diff options
context:
space:
mode:
authorZhenhui Xie <xiezh0831@yahoo.co.jp>2019-10-19 09:51:38 +0800
committerMatan Kushner <hello@matchai.me>2019-10-19 10:51:38 +0900
commitaadd8ecf2c0f3bdbb9684f900fee66b13f47c061 (patch)
treed2ff151e7bdc0de6c9b89e4723a3df23025aa957 /src/configs/python.rs
parent09353fff005b2b983fe9917df662483b9669dd64 (diff)
refactor: Refactor modules to use module config (#514)
Diffstat (limited to 'src/configs/python.rs')
-rw-r--r--src/configs/python.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/configs/python.rs b/src/configs/python.rs
new file mode 100644
index 000000000..736283f4f
--- /dev/null
+++ b/src/configs/python.rs
@@ -0,0 +1,27 @@
+use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
+
+use ansi_term::{Color, Style};
+use starship_module_config_derive::ModuleConfig;
+
+#[derive(Clone, ModuleConfig)]
+pub struct PythonConfig<'a> {
+ pub symbol: SegmentConfig<'a>,
+ pub version: SegmentConfig<'a>,
+ pub pyenv_prefix: SegmentConfig<'a>,
+ pub pyenv_version_name: bool,
+ pub style: Style,
+ pub disabled: bool,
+}
+
+impl<'a> RootModuleConfig<'a> for PythonConfig<'a> {
+ fn new() -> Self {
+ PythonConfig {
+ symbol: SegmentConfig::new("🐍 "),
+ version: SegmentConfig::default(),
+ pyenv_prefix: SegmentConfig::new("pyenv "),
+ pyenv_version_name: false,
+ style: Color::Yellow.bold(),
+ disabled: false,
+ }
+ }
+}