Files
nvim/after/plugin/truezen.lua

19 lines
283 B
Lua

local status_ok, truezen = pcall(require, "true-zen")
if not status_ok then
return
end
truezen.setup {
modes = {
ataraxis = {
minimum_writing_area = {
width = 90,
height = 44,
},
},
narrow = {
folds_style = "invisible",
},
}
}