-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.default.hocon
57 lines (52 loc) · 1.02 KB
/
config.default.hocon
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
chunk: {
filter.rejectPatterns: [
# This line references a value defined further below
${CHUNK_REJECT_PATTERNS.textractorMsg}
]
}
keybindings: {
global: {
ocr: {
# The lines below are commented out. Remove the leading '#' characters to make them operative.
# manualBlock: meta shift Q
# autoBlock: meta shift A
}
}
}
lookup: {
targets: [
${LOOKUP_TARGETS.deepl}
${LOOKUP_TARGETS.ichimoe}
${LOOKUP_TARGETS.jpdb}
${LOOKUP_TARGETS.googleImages}
]
}
ocr: {
engine: none
}
CHUNK_REJECT_PATTERNS: {
textractorMsg: "^Textractor"
}
LOOKUP_TARGETS: {
deepl: {
symbol: DEP
name: DeepL
url: "https://www.deepl.com/translator#ja/en/{}"
}
ichimoe: {
symbol: ICH
name: ichi.moe
url: "https://ichi.moe/cl/qr/?q={}&r=kana"
}
jpdb: {
symbol: JDB
name: jpdb
url: "https://jpdb.io/search?q={}"
}
googleImages: {
symbol: GLI
name: Google Images
url: "https://www.google.com/search?q={}%20site%3Ajp&tbm=isch"
newTab: yes
}
}