mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
22 lines
375 B
Lua
22 lines
375 B
Lua
return {
|
|
"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" },
|
|
},
|
|
}
|
|
|