enc: update config zen mode

This commit is contained in:
Pojok Code 2024-11-02 22:33:37 +07:00
parent 4bd49ca963
commit b75362b066

View file

@ -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 = {
{ "<leader>zz", "<cmd>ZenMode<cr>", desc = "Toggle Zen Mode" },
},