-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbasic_bookends.lua
More file actions
28 lines (28 loc) · 800 Bytes
/
Copy pathbasic_bookends.lua
File metadata and controls
28 lines (28 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
-- Bookends preset: Basic bookends
return {
name = "Basic bookends",
description = "Minimal starter — clock, page number, and a slim progress bar",
author = "bookends",
enabled = true,
positions = {
tl = { lines = {} },
tc = { lines = { "%k" }, line_font_size = { [1] = 14 } },
tr = { lines = {} },
bl = { lines = {} },
bc = { lines = { "Page %c of %t" }, line_font_size = { [1] = 14 } },
br = { lines = {} },
},
progress_bars = {
{
enabled = true,
type = "book",
style = "solid",
height = 5,
v_anchor = "bottom",
margin_v = 0,
margin_left = 0,
margin_right = 0,
chapter_ticks = "off",
},
},
}