1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-31 15:40:51 +00:00
starship/src/configs/conda.rs
2022-04-01 17:14:05 +02:00

27 lines
677 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(feature = "config-schema", derive(schemars::JsonSchema))]
#[serde(default)]
pub struct CondaConfig<'a> {
pub truncation_length: usize,
pub format: &'a str,
pub symbol: &'a str,
pub style: &'a str,
pub ignore_base: bool,
pub disabled: bool,
}
impl<'a> Default for CondaConfig<'a> {
fn default() -> Self {
CondaConfig {
truncation_length: 1,
format: "via [$symbol$environment]($style) ",
symbol: "🅒 ",
style: "green bold",
ignore_base: true,
disabled: false,
}
}
}