28 lines
406 B
Lua
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},
|
|
}
|