zen-mode config

easy writing time
This commit is contained in:
Robert Morrison 2022-07-15 06:55:06 +01:00
parent 18bf3656af
commit 8e9e5ecda8
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

27
after/plugin/zen.lua Normal file
View File

@ -0,0 +1,27 @@
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},
}