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>
iGor milhit 2023-06-16 14:51:11 +02:00
parent da9ea3751a
commit c467b30dbc
Signed by: igor
GPG Key ID: 692D97C3D0228A99
1 changed files with 3 additions and 0 deletions

View File

@ -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 },
}, },