diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 5c0e49174..49b7c3936 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -377,9 +377,9 @@ impl Default for VimInlayConfig { fn default() -> Self { Self { enable: false, - type_inlay_prefix: String::from(" => "), - parameter_inlay_prefix: String::from(" <= "), - other_inlay_prefix: String::from(" == "), + type_inlay_prefix: String::from(" -> "), + parameter_inlay_prefix: String::from(" <- "), + other_inlay_prefix: String::from(" - "), } } }