mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 09:44:22 +00:00
196cc8aa39
Add via prefix to dotnet modules' default format config.
40 lines
1.1 KiB
Rust
40 lines
1.1 KiB
Rust
use crate::config::ModuleConfig;
|
|
|
|
use serde::Serialize;
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
|
pub struct DotnetConfig<'a> {
|
|
pub format: &'a str,
|
|
pub version_format: &'a str,
|
|
pub symbol: &'a str,
|
|
pub style: &'a str,
|
|
pub heuristic: bool,
|
|
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 DotnetConfig<'a> {
|
|
fn default() -> Self {
|
|
DotnetConfig {
|
|
format: "via [$symbol($version )(🎯 $tfm )]($style)",
|
|
version_format: "v${raw}",
|
|
symbol: ".NET ",
|
|
style: "blue bold",
|
|
heuristic: true,
|
|
disabled: false,
|
|
detect_extensions: vec!["csproj", "fsproj", "xproj"],
|
|
detect_files: vec![
|
|
"global.json",
|
|
"project.json",
|
|
"Directory.Build.props",
|
|
"Directory.Build.targets",
|
|
"Packages.props",
|
|
],
|
|
detect_folders: vec![],
|
|
}
|
|
}
|
|
}
|