mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 17:47:13 +00:00
acefbc523f
* Add ignore_base to conda module * Add ignore_base to conda module in English docs * `ignore_base` defaults to `true`
27 lines
655 B
Rust
27 lines
655 B
Rust
use crate::config::{ModuleConfig, RootModuleConfig};
|
|
|
|
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,
|
|
pub ignore_base: bool,
|
|
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",
|
|
ignore_base: true,
|
|
disabled: false,
|
|
}
|
|
}
|
|
}
|