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 -- <<<