2023-06-07 12:22:43 +02:00
|
|
|
-- Zen mode with twilight.
|
|
|
|
-- Improves the edition experience with distraction free feature.
|
|
|
|
|
|
|
|
return {
|
|
|
|
"folke/zen-mode.nvim",
|
|
|
|
-- Twilight allows to dim text outside of the cursor line.
|
|
|
|
dependencies = {
|
|
|
|
"folke/twilight.nvim",
|
|
|
|
opts = {
|
|
|
|
-- Set the context to null in order to avoid highlighting to much
|
|
|
|
-- paragraphs in markdown.
|
|
|
|
context = 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
opts = {
|
|
|
|
window = {
|
|
|
|
-- Set the window width (85 columns) and height (80%).
|
|
|
|
width = 85,
|
|
|
|
height = .8,
|
|
|
|
options = {
|
|
|
|
-- Disable line numbering.
|
|
|
|
number = false,
|
2023-06-08 21:40:36 +02:00
|
|
|
signcolumn = "no",
|
2023-06-07 12:22:43 +02:00
|
|
|
},
|
|
|
|
},
|
2023-06-08 21:40:36 +02:00
|
|
|
plugins = {
|
|
|
|
options = {
|
|
|
|
enabled = true,
|
|
|
|
ruler = false,
|
|
|
|
showcmd = false,
|
|
|
|
},
|
|
|
|
gitsigns = { enabled = false },
|
|
|
|
},
|
2023-06-07 12:22:43 +02:00
|
|
|
},
|
|
|
|
}
|