Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 33162d4
Author: usagi-flow <[email protected]>
Date:   Thu May 16 23:28:26 2024 +0200

    feat(defaults): use `catppuccin_macchiato` as the default theme

commit b719768
Author: usagi-flow <[email protected]>
Date:   Thu May 16 23:28:26 2024 +0200

    fix(defaults): smart tab shouldn't be enabled by default
  • Loading branch information
usagi-flow committed May 18, 2024
1 parent 5503542 commit 511060a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helix-view/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ pub struct SmartTabConfig {
impl Default for SmartTabConfig {
fn default() -> Self {
SmartTabConfig {
enable: true,
enable: false,
supersede_menu: false,
}
}
Expand Down
2 changes: 1 addition & 1 deletion helix-view/src/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub static BASE16_DEFAULT_THEME_DATA: Lazy<Value> = Lazy::new(|| {
});

pub static DEFAULT_THEME: Lazy<Theme> = Lazy::new(|| Theme {
name: "default".into(),
name: "catppuccin_macchiato".into(),
..Theme::from(DEFAULT_THEME_DATA.clone())
});

Expand Down

0 comments on commit 511060a

Please sign in to comment.