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

25 lines
597 B
Rust
Raw Normal View History

use crate::config::{ModuleConfig, RootModuleConfig};
2019-10-05 18:25:25 +00:00
use starship_module_config_derive::ModuleConfig;
#[derive(Clone, ModuleConfig)]
pub struct CondaConfig<'a> {
pub truncation_length: usize,
pub format: &'a str,
pub symbol: &'a str,
pub style: &'a str,
2019-10-05 18:25:25 +00:00
pub disabled: bool,
}
impl<'a> RootModuleConfig<'a> for CondaConfig<'a> {
fn new() -> Self {
CondaConfig {
truncation_length: 1,
format: "via [$symbol$environment]($style) ",
symbol: "🅒 ",
style: "green bold",
2019-10-05 18:25:25 +00:00
disabled: false,
}
}
}