mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 17:47:13 +00:00
9313e90773
This makes it possible to configure when the elixir module is shown based on the contents of a directory. This should make it possible to be a lot more granular when configuring the module.
29 lines
787 B
Rust
29 lines
787 B
Rust
use crate::config::{ModuleConfig, RootModuleConfig};
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
pub struct ElixirConfig<'a> {
|
|
pub format: &'a str,
|
|
pub symbol: &'a str,
|
|
pub style: &'a str,
|
|
pub disabled: bool,
|
|
pub detect_extensions: Vec<&'a str>,
|
|
pub detect_files: Vec<&'a str>,
|
|
pub detect_folders: Vec<&'a str>,
|
|
}
|
|
|
|
impl<'a> RootModuleConfig<'a> for ElixirConfig<'a> {
|
|
fn new() -> Self {
|
|
ElixirConfig {
|
|
format: "via [$symbol($version \\(OTP $otp_version\\) )]($style)",
|
|
symbol: "💧 ",
|
|
style: "bold purple",
|
|
disabled: false,
|
|
detect_extensions: vec![],
|
|
detect_files: vec!["mix.exs"],
|
|
detect_folders: vec![],
|
|
}
|
|
}
|
|
}
|