1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-29 05:29:11 +00:00
starship/src/configs/conda.rs

28 lines
659 B
Rust
Raw Normal View History

use crate::config::ModuleConfig;
2019-10-05 18:25:25 +00:00
use serde::Serialize;
2019-10-05 18:25:25 +00:00
use starship_module_config_derive::ModuleConfig;
#[derive(Clone, ModuleConfig, Serialize)]
2019-10-05 18:25:25 +00:00
pub struct CondaConfig<'a> {
pub truncation_length: usize,
pub format: &'a str,
pub symbol: &'a str,
pub style: &'a str,
pub ignore_base: bool,
2019-10-05 18:25:25 +00:00
pub disabled: bool,
}
impl<'a> Default for CondaConfig<'a> {
fn default() -> Self {
2019-10-05 18:25:25 +00:00
CondaConfig {
truncation_length: 1,
format: "via [$symbol$environment]($style) ",
symbol: "🅒 ",
style: "green bold",
ignore_base: true,
2019-10-05 18:25:25 +00:00
disabled: false,
}
}
}