blob: 9eecc4f278c92493d017de2f480415baa05ab4bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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",
},
}
}
|