mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-16 10:05:13 +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,
|
|
}
|