From ec22006f01d657b01ac821e7917fb3b54e989bd0 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Fri, 21 Jan 2022 02:37:05 -0800 Subject: [PATCH] nvim: zen mode background color adjustment --- .config/nvim/lua/blake/other.lua | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.config/nvim/lua/blake/other.lua b/.config/nvim/lua/blake/other.lua index 04e2aa8..48e092c 100644 --- a/.config/nvim/lua/blake/other.lua +++ b/.config/nvim/lua/blake/other.lua @@ -175,7 +175,7 @@ M.zenmode = function() vim.cmd 'command! ZM ZenMode' require("zen-mode").setup { window = { - backdrop = 0.95, -- shade the backdrop of the Zen window. Set to 1 to keep the same as Normal + backdrop = 1, -- shade the backdrop of the Zen window. Set to 1 to keep the same as Normal -- height and width can be: -- * an absolute number of cells when > 1 -- * a percentage of the width / height of the editor when <= 1 @@ -206,13 +206,6 @@ M.zenmode = function() gitsigns = { enabled = true }, -- disables git signs tmux = { enabled = false }, -- disables the tmux statusline }, - -- Functions I could write but I'm probably not going to use - -- -- callback where you can add custom code when the Zen window opens - -- on_open = function(win) - -- end, - -- -- callback where you can add custom code when the Zen window closes - -- on_close = function() - -- end, } end -- <<<