-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ron
53 lines (53 loc) · 1.63 KB
/
config.ron
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
(
// colors: White, Black, Red, Green, Blue, Magenta, Cyan, Yello, Gray, DarkGray
// LightRed, LightGreen, LightBlue, LightMagenta, LightCyan, LightYellow, Rgb(r,g,b)
theme: SettingTheme (
background: Black,
header: Magenta, // file name, permission, size, date
boader: White, // frame line
directory: Blue, // dir font
file_item: White, // file font
select: Green, // selecting hightlight
command: [
// bg, font
(White, Black), // normal
(LightGreen, White), // imput
(LightBlue, White), // stacker
],
),
symbols: {
File: " ",
Directory: "▶",
Select: ">>"
},
user_keybinds: ModeKeybinds (
normal : {
"h": "move_to_parent_dir",
"j": "move_to_next_file_item",
"k": "move_to_prev_file_item",
"l": "move_to_child_dir",
"g g": "move_to_top_of_file_item",
"S-g": "move_to_bottom_of_file_item",
"tab":"next_dirtab",
"Backtab":"prev_dirtab",
"q" :"quit",
"S-i": "input", // experement
"S-v": "stacker",
},
input: {
"tab":"next_dirtab",
"Backtab":"prev_dirtab",
"q" :"quit",
"m": "make_directory", // TODO: add mode annotation
"q": "quit",
"escape": "normal",// experiment
},
stacker: {
"tab":"next_dirtab",
"Backtab":"prev_dirtab",
"q" :"quit",
"s-i": "input",
"escape": "normal"
},
)
)