-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.code-workspace
58 lines (58 loc) · 1.38 KB
/
mod.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"debug.node.autoAttach": "on",
"editor.acceptSuggestionOnEnter": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": true,
"editor.parameterHints.enabled": true,
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"files.eol": "\n",
"Lua.runtime.version": "Lua 5.1",
"Lua.telemetry.enable": false,
"Lua.workspace.ignoreDir": [],
"Lua.workspace.preloadFileSize": 10000,
"markdownlint.config": {
"default": true,
"MD024": { "siblings_only": true }
},
"prettier.useTabs": true,
"rainbow_csv.comment_prefix": "#",
"rainbow_csv.rbql_with_headers_by_default": true,
"window.title": "${rootName}: ${activeEditorMedium} ${dirty}",
"workbench.tree.indent": 20,
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": ["document"],
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"launch": {
"configurations": [
{
"type": "lrdb",
"request": "attach",
"name": "Attach",
"host": "localhost",
"port": 21110,
"sourceRoot": "${workspaceRoot}/.."
}
]
},
"extensions": {
"recommendations": [
"sumneko.lua",
"davidanson.vscode-markdownlint",
"mechatroner.rainbow-csv"
]
}
}