starship/src/configs/openstack.rs

27 lines
603 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct OspConfig<'a> {
pub format: &'a str,
pub symbol: &'a str,
pub style: &'a str,
pub disabled: bool,
}
impl<'a> Default for OspConfig<'a> {
fn default() -> Self {
OspConfig {
format: "on [$symbol$cloud(\\($project\\))]($style) ",
symbol: "☁️ ",
style: "bold yellow",
disabled: false,
}
}
}