mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
fix(configure): fix print-config issues (#2556)
This commit is contained in:
parent
7273c8a42a
commit
b791383a94
@ -66,8 +66,12 @@ pub use starship_root::*;
|
||||
#[derive(Default, Serialize, ModuleConfig, Clone)]
|
||||
#[serde(default)]
|
||||
pub struct FullConfig<'a> {
|
||||
#[serde(flatten)]
|
||||
root: starship_root::StarshipRootConfig<'a>,
|
||||
// Root config
|
||||
pub format: &'a str,
|
||||
pub scan_timeout: u64,
|
||||
pub command_timeout: u64,
|
||||
pub add_newline: bool,
|
||||
// modules
|
||||
aws: aws::AwsConfig<'a>,
|
||||
battery: battery::BatteryDisplayConfig<'a>,
|
||||
character: character::CharacterConfig<'a>,
|
||||
@ -88,7 +92,7 @@ pub struct FullConfig<'a> {
|
||||
git_commit: git_commit::GitCommitConfig<'a>,
|
||||
git_state: git_state::GitStateConfig<'a>,
|
||||
git_status: git_status::GitStatusConfig<'a>,
|
||||
go: go::GoConfig<'a>,
|
||||
golang: go::GoConfig<'a>,
|
||||
helm: helm::HelmConfig<'a>,
|
||||
hg_branch: hg_branch::HgBranchConfig<'a>,
|
||||
hostname: hostname::HostnameConfig<'a>,
|
||||
|
@ -2,6 +2,7 @@ use crate::{config::ModuleConfig, module::ALL_MODULES};
|
||||
|
||||
use serde::Serialize;
|
||||
|
||||
// On changes please also update the `FullConfig` struct in `mod.rs`
|
||||
#[derive(Clone, Serialize)]
|
||||
pub struct StarshipRootConfig<'a> {
|
||||
pub format: &'a str,
|
||||
|
Loading…
Reference in New Issue
Block a user