pojokcodeid.nvim-lazy/lua/pcode/plugins/extras/zenmode.lua

22 lines
414 B
Lua
Raw Permalink Normal View History

2024-11-04 21:29:25 +07:00
return {
2024-11-06 12:22:10 +07:00
"folke/zen-mode.nvim",
event = "VeryLazy",
opts = {
plugins = {
options = {
-- hide statusline
laststatus = 0,
},
},
on_open = function(win)
require("notify")("Zen Mode ON")
end,
on_close = function()
require("notify")("Zen Mode OFF")
end,
},
keys = {
{ "<leader>z", "<cmd>ZenMode<cr>", desc = "󰤼 Toggle Zen Mode" },
},
2024-11-04 21:29:25 +07:00
}