diff options
author | Joe Wilm <joe@jwilm.com> | 2017-01-06 11:16:57 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2017-01-06 11:17:48 -0800 |
commit | 99ef2bef9e47f2d44536fd4b531c1b33e2828cac (patch) | |
tree | 1df2bddc9531245456342917555ca4beb9ada622 /src/main.rs | |
parent | 2befe3681e7e813e704fbbf75a520e04bf049d36 (diff) | |
download | alacritty-99ef2bef9e47f2d44536fd4b531c1b33e2828cac.tar.gz alacritty-99ef2bef9e47f2d44536fd4b531c1b33e2828cac.zip |
Add default macOS config
Should solve the `monospace` issue people are seeing for now.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ce323ac1..d53daf0f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -43,7 +43,7 @@ fn main() { Err(err) => err_println!("Write defaults config failure: {}", err) } - Config::default() + Config::load().unwrap() }, // If there's a problem with the config file, print an error |