Files
starship/src/configs/localip.rs
T

27 lines
583 B
Rust
Raw Normal View History

use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
2022-09-09 14:59:38 +02:00
#[cfg_attr(
feature = "config-schema",
derive(schemars::JsonSchema),
schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct LocalipConfig<'a> {
pub ssh_only: bool,
pub format: &'a str,
pub style: &'a str,
pub disabled: bool,
}
impl Default for LocalipConfig<'_> {
fn default() -> Self {
LocalipConfig {
ssh_only: true,
format: "[$localipv4]($style) ",
style: "yellow bold",
disabled: true,
}
}
}