aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax_highlighting.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax_highlighting.rs')
-rw-r--r--src/syntax_highlighting.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax_highlighting.rs b/src/syntax_highlighting.rs
index b76aa4b..1a6e626 100644
--- a/src/syntax_highlighting.rs
+++ b/src/syntax_highlighting.rs
@@ -18,7 +18,7 @@ pub enum SetColorError {
impl Highlighter {
pub fn new() -> Self {
let mut this = Self {
- enabled: true,
+ enabled: false,
colors: HashMap::new(),
};
let mut sc = |a: &str, b: &str| this.set_color(a.as_bytes(), b.as_bytes()).unwrap();