mirror of
https://github.com/Llewellynvdm/starship.git
synced 2025-01-07 07:54:57 +00:00
10 lines
212 B
Rust
10 lines
212 B
Rust
use crate::config::ModuleConfig;
|
|
|
|
use serde::Serialize;
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
#[derive(Clone, ModuleConfig, Serialize, Default)]
|
|
pub struct LineBreakConfig {
|
|
pub disabled: bool,
|
|
}
|