ensure :toggle soft-wrap.enable works by default (#6742)
This commit is contained in:
parent
bff7fc8695
commit
5ec41195a0
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue