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

29 lines
779 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,
pub detect_extensions: Vec<&'a str>,
pub detect_files: Vec<&'a str>,
pub detect_folders: Vec<&'a str>,
2019-12-05 18:04:27 +00:00
}
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,
detect_extensions: vec!["php"],
detect_files: vec!["composer.json", ".php-version"],
detect_folders: vec![],
2019-12-05 18:04:27 +00:00
}
}
}