1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-26 16:34:23 +03:00

Allow not specifying font_rules in the config file

This commit is contained in:
Wez Furlong 2018-02-07 15:42:12 -08:00
parent 6dd0312980
commit 4338eecc3f

View File

@ -25,6 +25,7 @@ pub struct Config {
/// An optional set of style rules to select the font based
/// on the cell attributes
#[serde(default)]
pub font_rules: Vec<StyleRule>,
}