ensure :toggle soft-wrap.enable works by default (#6742)

pull/16/head
Pascal Kuthe 1 year ago committed by GitHub
parent bff7fc8695
commit 5ec41195a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -749,7 +749,10 @@ impl Default for Config {
bufferline: BufferLine::default(),
indent_guides: IndentGuidesConfig::default(),
color_modes: false,
soft_wrap: SoftWrap::default(),
soft_wrap: SoftWrap {
enable: Some(false),
..SoftWrap::default()
},
text_width: 80,
completion_replace: false,
workspace_lsp_roots: Vec::new(),

Loading…
Cancel
Save