2020-07-29 15:38:23 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig};
|
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct DartConfig<'a> {
|
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
|
|
|
pub disabled: bool,
|
2021-02-14 21:21:52 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-07-29 15:38:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for DartConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
DartConfig {
|
2021-01-20 17:56:18 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2020-07-29 15:38:23 +00:00
|
|
|
symbol: "🎯 ",
|
|
|
|
style: "bold blue",
|
|
|
|
disabled: false,
|
2021-02-14 21:21:52 +00:00
|
|
|
detect_extensions: vec!["dart"],
|
|
|
|
detect_files: vec!["pubspec.yaml", "pubspec.yml", "pubspec.lock"],
|
|
|
|
detect_folders: vec![".dart_tool"],
|
2020-07-29 15:38:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|