zenmode: Improve slightly the configuration
- Disables the foldcolumn which displays the fold level. - Removes the backdrop to get a better color experience. - Removes the colorcolumn in zen mode. Co-Authored-by: iGor milhit <igor@milhit.ch>
parent
b30b439e71
commit
1f9d1c7657
|
@ -18,6 +18,7 @@ return {
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
window = {
|
window = {
|
||||||
|
backdrop = 1,
|
||||||
-- Set the window width (85 columns) and height (80%).
|
-- Set the window width (85 columns) and height (80%).
|
||||||
width = 85,
|
width = 85,
|
||||||
height = .8,
|
height = .8,
|
||||||
|
@ -25,6 +26,7 @@ return {
|
||||||
-- Disable line numbering.
|
-- Disable line numbering.
|
||||||
number = false,
|
number = false,
|
||||||
signcolumn = "no",
|
signcolumn = "no",
|
||||||
|
colorcolumn = "0"
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
plugins = {
|
plugins = {
|
||||||
|
@ -32,6 +34,7 @@ return {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
ruler = false,
|
ruler = false,
|
||||||
showcmd = false,
|
showcmd = false,
|
||||||
|
foldcolumn = "0"
|
||||||
},
|
},
|
||||||
gitsigns = { enabled = false },
|
gitsigns = { enabled = false },
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue