2020-04-03 18:16:34 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
|
|
|
|
|
|
|
|
use ansi_term::{Color, Style};
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct JuliaConfig<'a> {
|
|
|
|
pub symbol: SegmentConfig<'a>,
|
|
|
|
pub version: SegmentConfig<'a>,
|
|
|
|
pub style: Style,
|
|
|
|
pub disabled: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for JuliaConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
JuliaConfig {
|
2020-04-07 09:07:51 +00:00
|
|
|
symbol: SegmentConfig::new("ஃ "),
|
2020-04-03 18:16:34 +00:00
|
|
|
version: SegmentConfig::default(),
|
|
|
|
style: Color::Purple.bold(),
|
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|