2019-10-19 01:51:38 +00:00
|
|
|
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,
|
2020-04-14 08:26:51 +00:00
|
|
|
pub scan_for_pyfiles: bool,
|
2019-10-19 01:51:38 +00:00
|
|
|
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,
|
2020-04-14 08:26:51 +00:00
|
|
|
scan_for_pyfiles: true,
|
2019-10-19 01:51:38 +00:00
|
|
|
style: Color::Yellow.bold(),
|
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|