nvim-config/lua/plugins/zenmode.lua
2025-01-01 09:08:27 +05:30

24 lines
481 B
Lua

return {
{
"folke/zen-mode.nvim",
keys = {
{
"<leader>zm",
function()
require("zen-mode").toggle({
window = {
width = 0.85,
},
})
end,
},
},
opts = {
plugins = {
twilight = { enabled = true },
},
},
},
}