-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdefault.toml
85 lines (74 loc) · 1.82 KB
/
default.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[editor]
program = "vim"
args = ["{file}"]
dir = "/tmp"
[layout]
direction = "horizontal"
tree_size = 40
[header]
disable = false
format = "{version} - {data_source} ({content_type}) - {data_size}"
[footer]
disable = false
[data]
disable_highlight = false
max_data_size = 30
[keys]
move_up = ["k", "<up>"]
move_down = ["j", "<down>"]
move_left = ["h", "<left>"]
move_right = ["l", "<right>"]
select_focus = ["<enter>"]
select_parent = ["p"]
select_first = ["g"]
select_last = ["G"]
close_parent = ["<backspace>"]
change_root = ["r"]
reset = ["<esc>"]
page_up = ["<page-up>", "<ctrl-y>"]
page_down = ["<page-down>", "<ctrl-e>"]
change_layout = ["v"]
tree_scale_up = ["["]
tree_scale_down = ["]"]
switch = ["<tab>"]
edit = ["e"]
copy_name = ["y"]
copy_value = ["Y"]
quit = ["<ctrl-c>", "q"]
[colors]
header = {bold = true}
focus_border = {fg = "magenta", bold = true}
[colors.tree]
border = {fg = "blue"}
selected = {fg = "black", bg = "light-green"}
name = {}
type_str = {fg = "cyan", bold = true, italic = true}
type_null = {fg = "cyan", bold = true, italic = true}
type_bool = {fg = "cyan", bold = true, italic = true}
type_num = {fg = "cyan", bold = true, italic = true}
type_arr = {fg = "cyan", bold = true, italic = true}
type_obj = {fg = "cyan", bold = true, italic = true}
value = {fg = "dark-gray"}
[colors.data]
text = {}
border = {fg = "blue"}
symbol = {}
name = {fg = "yellow", italic = true}
str = {fg = "green"}
num = {fg = "red"}
null = {fg = "blue", italic = true}
bool = {fg = "red", bold = true, italic = true}
section = {fg = "cyan", bold = true}
[colors.footer]
root = {fg = "black", bg = "light-cyan", bold = true}
identify = {fg = "black", bg = "light-green", bold = true}
message = {fg = "green", bold = true}
[colors.popup]
error_text = {fg = "red"}
[types]
str = "str"
null = "null"
bool = "bool"
num = "num"
arr = "arr"
obj = "obj"