-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromptly-literate.code-workspace
109 lines (109 loc) · 2.01 KB
/
promptly-literate.code-workspace
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "entity.name.function.letter.nlp",
"settings": {
"foreground": "#dc1b1b"
}
},
{
"scope": "variable.parameter.nlp",
"settings": {
"foreground": "#f8fa87"
}
},
{
"scope": "keyword.attribute.nlp",
"settings": {
"foreground": "#f293fb"
}
},
{
"scope": "constant.numeric.tree",
"settings": {
"foreground": "#93bffb"
}
},
{
"scope": "keyword.fired.tree",
"settings": {
"foreground": "#dc1b1b"
}
},
{
"scope": "keyword.rewrite.tree",
"settings": {
"foreground": "#f8fa87"
}
},
{
"scope": "keyword.node.tree",
"settings": {
"foreground": "#4e8e3c"
}
},
{
"scope": "variable.parameter.txxt",
"settings": {
"foreground": "#f8fa87"
}
},
{
"scope": "keyword.concept.kbb1",
"settings": {
"foreground": "#909228"
}
},
{
"scope": "keyword.concept.kbb",
"settings": {
"foreground": "#e3ee50"
}
},
{
"scope": "keyword.concept.kbb1",
"settings": {
"foreground": "#2eb657"
}
},
{
"scope": "keyword.concept.kbb2",
"settings": {
"foreground": "#e049d9"
}
}
]
},
"git.ignoreLimitWarning": true,
"python.envFile": "${workspaceFolder}/.env",
"python.terminal.activateEnvInCurrentTerminal": true,
"editor.renderControlCharacters": false,
"spellright.language": [
"en",
"de"
],
"spellright.documentTypes": [
"latex",
"plaintext"
],
"cSpell.language": "en,en-GB,en-US",
"cSpell.customDictionaries": {
"custom-dictionary-workspace": {
"name": "custom-dictionary-workspace",
"path": "${workspaceFolder:promptly-literate}/.cspell/custom-dictionary-workspace.txt",
"addWords": true,
"scope": "workspace"
}
},
"cSpell.words": [
"mollick"
]
}
}