diff --git a/lua/custom/plugins/zenmode.lua b/lua/custom/plugins/zenmode.lua index 17472d6..9265a01 100644 --- a/lua/custom/plugins/zenmode.lua +++ b/lua/custom/plugins/zenmode.lua @@ -1,7 +1,19 @@ return { "folke/zen-mode.nvim", event = "VeryLazy", - opts = {}, + opts = { + plugins = { + options = { + laststatus = 0, + }, + }, + on_open = function(win) + require("notify")("Zen Mode ON") + end, + on_close = function() + require("notify")("Zen Mode OFF") + end, + }, keys = { { "zz", "ZenMode", desc = "Toggle Zen Mode" }, },