nvim/lua/custom/plugins/zenmode.lua

17 lines
372 B
Lua

return {
{'folke/zen-mode.nvim',
dependencies = {'folke/twilight.nvim'},
config = function ()
require("zen-mode").setup({
window = {
width = .75, -- width will be 85% of the editor width
options = {
number = false,
relativenumber = false,
},
}
})
end
},
}