From c2f0aa8ee235eedbc50839cfe0d62a3e8ce463fd Mon Sep 17 00:00:00 2001 From: iGor milhit Date: Wed, 27 Sep 2023 15:23:28 +0200 Subject: [PATCH] plugins: remove the zen mode plugin Co-Authored-by: iGor milhit --- lua/custom/plugins/zen-mode.lua | 39 --------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 lua/custom/plugins/zen-mode.lua diff --git a/lua/custom/plugins/zen-mode.lua b/lua/custom/plugins/zen-mode.lua deleted file mode 100644 index 5244601..0000000 --- a/lua/custom/plugins/zen-mode.lua +++ /dev/null @@ -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 }, - }, - }, -}