plugins: remove the zen mode plugin

Co-Authored-by: iGor milhit <igor@milhit.ch>
test
iGor milhit 2023-09-27 15:23:28 +02:00
parent 5e9994536b
commit c2f0aa8ee2
Signed by: igor
GPG Key ID: 692D97C3D0228A99
1 changed files with 0 additions and 39 deletions

View File

@ -1,39 +0,0 @@
-- Zen mode with twilight.
-- Improves the edition experience with distraction free feature.
return {
"folke/zen-mode.nvim",
ft = {
"markdown",
"pandoc"
},
-- 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, signcolumn and colorcolumn.
number = false,
signcolumn = "no",
},
},
plugins = {
options = {
enabled = true,
ruler = false,
showcmd = false,
},
gitsigns = { enabled = false },
},
},
}