nvimconfig/after/plugin/zen.lua
Robert Morrison 8e9e5ecda8
zen-mode config
easy writing time
2022-07-15 06:55:06 +01:00

28 lines
406 B
Lua

local ok = pcall(require, "zen-mode")
if not ok then
return
end
require("zen-mode").setup{
window = {
backdrop = 1,
width = 0.85,
height = 0.50,
options = {
signcolumn = "no",
number = false,
cursorline = true,
cursorcolumn = false,
list = false,
},
},
plugins = {
options = {
enabled = true,
ruler = false,
showcmd = false,
}
},
twilight = {enabled = true},
}