From ea05a626d6d6b82e997c3934388b9f818e1bd165 Mon Sep 17 00:00:00 2001 From: alexjuda Date: Sun, 29 Dec 2024 10:13:57 +0100 Subject: [PATCH] Don't shade away the Zen mode backdrop --- config/nvim/lua/aj/pkg_settings.lua | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/config/nvim/lua/aj/pkg_settings.lua b/config/nvim/lua/aj/pkg_settings.lua index e472cf4..91ee045 100644 --- a/config/nvim/lua/aj/pkg_settings.lua +++ b/config/nvim/lua/aj/pkg_settings.lua @@ -19,11 +19,14 @@ local setup_all = function() ------------------- require("zen-mode").setup { window = { - -- Use just a little over the standard 80 line char limit to acount for - -- the line numbers. - width = 90, - -- We can also use a fraction of the outer window size. + -- Use just a little over the standard 80 line char limit to account + -- for the line numbers. We can also use a fraction of the outer + -- window size. -- width = 0.85, + width = 90, + -- Don't shade the backgrop of the Zen window. + -- backdrop = 0.95, + backdrop = 1.0 }, }