forked from dineshsalunke/nvim-config
24 lines
481 B
Lua
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 },
|
|
},
|
|
},
|
|
},
|
|
}
|