Skip to content

Commit

Permalink
fix: format style
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioRibera committed Mar 17, 2024
1 parent ff9f69a commit 42ec379
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions crates/sss_code/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ pub struct CodeConfig {
)]
pub vim_theme: Option<String>,
// Setting synctect
#[clap(long, short = 'l', conflicts_with="list_themes", help = "Lists supported file types")]
#[clap(
long,
short = 'l',
conflicts_with = "list_themes",
help = "Lists supported file types"
)]
#[merge(strategy = overwrite_false)]
#[serde(skip)]
pub list_file_types: bool,
Expand Down Expand Up @@ -97,8 +102,14 @@ impl Default for CodeConfig {
extra_syntaxes: None,
extension: None,
code_background: Some("#323232".to_string()),
lines: Some(Range { start: 0, end: usize::MAX }),
highlight_lines: Some(Range { start: 0, end: usize::MAX }),
lines: Some(Range {
start: 0,
end: usize::MAX,
}),
highlight_lines: Some(Range {
start: 0,
end: usize::MAX,
}),
line_numbers: true,
tab_width: Some(4),
}
Expand Down

0 comments on commit 42ec379

Please sign in to comment.