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

25 lines
606 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(feature = "config-schema", derive(schemars::JsonSchema))]
#[serde(default)]
pub struct HostnameConfig<'a> {
pub ssh_only: bool,
pub trim_at: &'a str,
pub format: &'a str,
pub style: &'a str,
pub disabled: bool,
}
impl<'a> Default for HostnameConfig<'a> {
fn default() -> Self {
HostnameConfig {
ssh_only: true,
trim_at: ".",
format: "[$hostname]($style) in ",
style: "green dimmed bold",
disabled: false,
}
}
}