mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 01:34:10 +00:00
d06ba072a8
* feat: allow printing default and computed config * fix custom modules * actually fix custom modules
30 lines
788 B
Rust
30 lines
788 B
Rust
use crate::config::ModuleConfig;
|
|
|
|
use serde::Serialize;
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
|
pub struct PureScriptConfig<'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> Default for PureScriptConfig<'a> {
|
|
fn default() -> Self {
|
|
PureScriptConfig {
|
|
format: "via [$symbol($version )]($style)",
|
|
symbol: "<=> ",
|
|
style: "bold white",
|
|
disabled: false,
|
|
detect_extensions: vec!["purs"],
|
|
detect_files: vec!["spago.dhall"],
|
|
detect_folders: vec![],
|
|
}
|
|
}
|
|
}
|