Change diffgutter default to false

This commit is contained in:
Zachary Yedidia 2020-02-10 00:30:13 -05:00
parent bdf9e6d3a4
commit ecb9fd5a8a
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -188,7 +188,7 @@ var defaultCommonSettings = map[string]interface{}{
"basename": false, "basename": false,
"colorcolumn": float64(0), "colorcolumn": float64(0),
"cursorline": true, "cursorline": true,
"diffgutter": true, "diffgutter": false,
"encoding": "utf-8", "encoding": "utf-8",
"eofnewline": false, "eofnewline": false,
"fastdirty": true, "fastdirty": true,

View file

@ -62,7 +62,7 @@ Here are the available options:
* `diffgutter`: display diff indicators before lines. * `diffgutter`: display diff indicators before lines.
default value: `true` default value: `false`
* `encoding`: the encoding to open and save files with. Supported encodings * `encoding`: the encoding to open and save files with. Supported encodings
are listed at https://www.w3.org/TR/encoding/. are listed at https://www.w3.org/TR/encoding/.