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

23 lines
519 B
Rust
Raw Normal View History

use crate::config::{ModuleConfig, RootModuleConfig};
2019-12-05 18:04:27 +00:00
use starship_module_config_derive::ModuleConfig;
#[derive(Clone, ModuleConfig)]
pub struct PhpConfig<'a> {
pub symbol: &'a str,
pub style: &'a str,
pub format: &'a str,
2019-12-05 18:04:27 +00:00
pub disabled: bool,
}
impl<'a> RootModuleConfig<'a> for PhpConfig<'a> {
fn new() -> Self {
PhpConfig {
symbol: "🐘 ",
style: "147 bold",
format: "via [$symbol($version )]($style)",
2019-12-05 18:04:27 +00:00
disabled: false,
}
}
}