forked from TFlippy/TC2.Base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.code-workspace
99 lines (97 loc) · 2.56 KB
/
server.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
{
"folders": [
{
"path": "."
},
{
"path": "..\\TC2.Core"
}
],
"launch": {
"configurations": [
],
"compounds": []
},
"extensions": {
"recommendations":
[
"ms-dotnettools.csharp",
"eamodio.gitlens",
"majicDave.vscode-shaderc",
"slevesque.shader",
"laktak.hjson",
"streetsidesoftware.code-spell-checker"
]
},
"settings": {
"[csharp]": {
},
"[hjson]": {
},
"cSpell.ignorePaths": [
"package-lock.json",
"node_modules",
"vscode-extension",
".git/objects",
".vscode",
".vscode-insiders",
"*.code-workspace"
],
"editor.bracketPairColorization.enabled": true,
"editor.formatOnSave": false,
"editor.smoothScrolling": false,
"editor.useTabStops": true,
"editor.lightbulb.enabled": true,
"editor.links": true,
"editor.matchBrackets": "always",
"editor.tabCompletion": "on",
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.comments.insertSpace": true,
"editor.codeLens": true,
"explorer.compactFolders": false,
"explorer.confirmDelete": true,
"explorer.openEditors.visible": 9,
"explorer.confirmDragAndDrop": true,
"debug.openExplorerOnEnd": false,
"breadcrumbs.enabled": true,
"breadcrumbs.icons": true,
"files.encoding": "utf8",
"files.insertFinalNewline": true,
"files.autoSave": "off",
"csharp.semanticHighlighting.enabled": true,
"csharp.suppressDotnetInstallWarning": false,
"csharp.suppressDotnetRestoreNotification": false,
"csharp.testsCodeLens.enabled": false,
"csharp.suppressBuildAssetsNotification": false,
"omnisharp.waitForDebugger": false,
"omnisharp.enableMsBuildLoadProjectsOnDemand": true,
"omnisharp.enableRoslynAnalyzers": false,
"omnisharp.disableMSBuildDiagnosticWarning": false,
"omnisharp.autoStart": true,
"omnisharp.useEditorFormattingSettings": false,
"cSpell.words": [
"invsqr",
"smirgl",
"cysharp",
"lerp",
"mult"
],
"razor.disabled": true,
"omnisharp.useGlobalMono": "never",
"razor.format.enable": false,
"workbench.colorTheme": "Visual Studio 2019 Light",
"explorer.copyRelativePathSeparator": "/",
"explorer.sortOrder": "modified",
"explorer.sortOrderLexicographicOptions": "lower",
"workbench.experimental.layoutControl.enabled": true,
"workbench.startupEditor": "none",
"workbench.preferredDarkColorTheme": "One Dark Pro",
"workbench.preferredLightColorTheme": "Visual Studio Light",
"workbench.sideBar.location": "right",
"workbench.tree.indent": 12,
"workbench.editor.highlightModifiedTabs": true,
"oneDarkPro.bold": true,
"omnisharp.defaultLaunchSolution": "TC2.Base.sln"
}
}