2020-07-07 22:45:32 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig};
|
2019-10-19 01:51:38 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct RubyConfig<'a> {
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
2019-10-19 01:51:38 +00:00
|
|
|
pub disabled: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for RubyConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
RubyConfig {
|
2021-01-20 17:46:26 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2020-07-07 22:45:32 +00:00
|
|
|
symbol: "💎 ",
|
|
|
|
style: "bold red",
|
2019-10-19 01:51:38 +00:00
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|