diff options
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r-- | helix-view/src/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 44014e83..83208f78 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -30,7 +30,7 @@ impl Editor { let toml = config .as_deref() .unwrap_or(include_bytes!("../../theme.toml")); - let theme: Theme = toml::from_slice(&toml).expect("failed to parse theme.toml"); + let theme: Theme = toml::from_slice(toml).expect("failed to parse theme.toml"); let language_servers = helix_lsp::Registry::new(); |