2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2019-10-05 18:25:25 +00:00
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
use serde::Serialize;
|
2019-10-05 18:25:25 +00:00
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
2019-10-05 18:25:25 +00:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for CondaConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2019-10-05 18:25:25 +00:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|