Update default font

This commit is contained in:
Jeremy Soller 2025-02-20 11:14:31 -07:00
parent 0c601005c8
commit b05076be65
2 changed files with 2 additions and 2 deletions

View file

@ -247,7 +247,7 @@ impl Default for Config {
color_schemes_light: BTreeMap::new(),
dim_font_weight: Weight::NORMAL.0,
focus_follow_mouse: false,
font_name: "Fira Mono".to_string(),
font_name: "Noto Sans Mono".to_string(),
font_size: 14,
font_size_zoom_step_mul_100: 100,
font_stretch: Stretch::Normal.to_number(),

View file

@ -278,7 +278,7 @@ impl Terminal {
let bold_font_weight = app_config.bold_font_weight;
let use_bright_bold = app_config.use_bright_bold;
let metrics = Metrics::new(14.0, 20.0);
let metrics = Metrics::new(14.0, 21.0);
let default_bg = convert_color(&colors, Color::Named(NamedColor::Background));
let default_fg = convert_color(&colors, Color::Named(NamedColor::Foreground));