Major restructuring of theme/syntax handling

This commit is contained in:
sharkdp
2020-03-21 16:48:27 +01:00
committed by David Peter
parent b1b8addf7e
commit 06b7be7ee9
10 changed files with 84 additions and 72 deletions

View File

@ -29,7 +29,7 @@ fn main() {
theme: "1337".into(),
..Default::default()
};
let assets = HighlightingAssets::new();
let assets = HighlightingAssets::from_binary();
Controller::new(&config, &assets).run().expect("no errors");
}