-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.json
44 lines (44 loc) · 1.26 KB
/
settings.json
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
{
"search.exclude": {
"build_output.lua": true,
"examples/projects/luajit/out.lua": true,
"language_server/vscode": true,
"**.js": true
},
"files.associations": {
"*.nlua": "nattlua",
"*.lua": "nattlua",
"*.lua.coverage": "nattlua"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "unpublished.nattlua",
"nattlua.executable": "luajit",
"nattlua.workingDirectory": "${workspaceFolder}",
"nattlua.path": "${workspaceFolder}/nattlua.lua",
"nattlua.arguments": ["language-server"],
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.semanticHighlighting.enabled": true,
"editor.inlayHints.enabled": "on",
"workbench.colorCustomizations": {
"editor.background": "#1F1F1F"
},
"editor.tokenColorCustomizations": {
"strings": "#e99648",
"numbers": "#fffa9b",
"keywords": "#969ebb",
"types": "#b3ffd5",
"functions": "#83e6ff",
"comments": "#ff9797",
"variables": "#ffffff"
},
"runOnSave.statusMessageTimeout": 3000,
"runOnSave.commands": [
{
"globMatch": "**",
"command": "cd ${workspaceFolder} && luajit -e \"assert(loadfile('.vscode/on_editor_save.lua'))('${file}','${workspaceFolder}')\"",
"runIn": "terminal"
}
]
}