2020-07-07 22:45:32 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig};
|
2019-10-05 18:25:25 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct CondaConfig<'a> {
|
2019-12-09 17:59:02 +00:00
|
|
|
pub truncation_length: usize,
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
2020-07-30 16:57:15 +00:00
|
|
|
pub ignore_base: bool,
|
2019-10-05 18:25:25 +00:00
|
|
|
pub disabled: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for CondaConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
CondaConfig {
|
2019-12-09 17:59:02 +00:00
|
|
|
truncation_length: 1,
|
2020-07-07 22:45:32 +00:00
|
|
|
format: "via [$symbol$environment]($style) ",
|
|
|
|
symbol: "🅒 ",
|
|
|
|
style: "green bold",
|
2020-07-30 16:57:15 +00:00
|
|
|
ignore_base: true,
|
2019-10-05 18:25:25 +00:00
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|