Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioRibera committed Jan 18, 2024
1 parent d3d8a95 commit 13364cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/sss_code/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ fn main() {
let theme = if let Some(vim_theme) = &config.vim_theme {
Cow::Owned(theme_from_vim(vim_theme))
} else {
let theme = config.theme.clone().unwrap_or("base16-ocean.dark".to_string());
let theme = config
.theme
.clone()
.unwrap_or("base16-ocean.dark".to_string());
themes
.themes
.get(&theme)
Expand Down

0 comments on commit 13364cb

Please sign in to comment.