Skip to content

Commit db93081

Browse files
committed
.
1 parent c271667 commit db93081

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+31169
-1
lines changed
+200
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
{
2+
"folders": [{ "path": ".." }],
3+
"settings": {
4+
// Zig Workspace
5+
"files.exclude": {
6+
"*.lnk": true,
7+
"**/.git": true,
8+
".gitignore": true,
9+
"**/.svn": true,
10+
"**/.hg": true,
11+
"**/CVS": true,
12+
"**/.DS_Store": true,
13+
"**/Thumbs.db": true,
14+
// VSCODE FOLDERS --------
15+
"**/.vscode": false,
16+
"**/.code-workspace": true,
17+
// ZIG FOLDERS --------
18+
"**/zig-cache": true,
19+
"**/.zig-cache": true
20+
},
21+
"search.exclude": {
22+
"**/node_modules": true,
23+
"**/bower_components": true,
24+
"**/*.code-search": true,
25+
// ZIG FOLDERS --------
26+
"**/zig-out": true
27+
},
28+
"files.watcherExclude": {
29+
// ZIG FOLDERS --------
30+
"**/zig-cache": true
31+
},
32+
33+
// DarknessFX settings
34+
"telemetry.telemetryLevel": "off",
35+
"workbench.colorTheme": "Default Dark+",
36+
"workbench.startupEditor": "none",
37+
"workbench.colorCustomizations": {
38+
"statusBar.background" : "#1A1A1A",
39+
"statusBar.noFolderBackground" : "#212121",
40+
"statusBar.debuggingBackground": "#263238",
41+
"editorBracketHighlight.foreground1": "#888888",
42+
"editorBracketHighlight.foreground2": "#686888",
43+
"editorBracketHighlight.foreground3": "#688868",
44+
"editorBracketHighlight.foreground4": "#886868",
45+
"editorBracketHighlight.foreground5": "#686868",
46+
},
47+
"editor.tokenColorCustomizations": {
48+
"comments": "#546E7A",
49+
"functions": "#DFAB4B",
50+
"keywords": "#367CB6",
51+
"numbers": "#CE9178",
52+
"strings": "#CE9178",
53+
"types": "#2EA990",
54+
"variables": "#7CBCDE",
55+
56+
"[Default Dark+]": {
57+
"textMateRules": [
58+
{
59+
"scope": [
60+
"other",
61+
"source",
62+
"keyword.operator",
63+
"keyword.operator.noexcept",
64+
"punctuation",
65+
"punctuation.dot",
66+
"punctuation.comma",
67+
"punctuation.definitions",
68+
"punctuation.definition.comment",
69+
"punctuation.definition.tag",
70+
"punctuation.definition.tag.html",
71+
"punctuation.definition.tag.begin.html",
72+
"punctuation.definition.tag.end.html",
73+
"punctuation.section.embedded",
74+
"punctuation.separator",
75+
"punctuation.separator.inheritance.php",
76+
],
77+
"settings": {
78+
"foreground": "#758E68",
79+
"fontStyle": "",
80+
}
81+
},
82+
{
83+
"scope": [
84+
"comment",
85+
],
86+
"settings": {
87+
"fontStyle": "italic",
88+
}
89+
},
90+
{
91+
"scope": [
92+
"keyword",
93+
"keyword.control",
94+
"keyword.other",
95+
"keyword.other.template",
96+
"keyword.other.substitution",
97+
"keyword.other.unit",
98+
"storage",
99+
"storage.type",
100+
"storage.modifier",
101+
"keywordLiteral",
102+
"keyword.literal",
103+
"keyword.constant.default",
104+
],
105+
"settings": {
106+
"fontStyle": "italic",
107+
"foreground": "#367CB6"
108+
}
109+
},
110+
{
111+
"scope": [
112+
"support.class",
113+
"support.type",
114+
"entity.name.type",
115+
"entity.name.namespace",
116+
"entity.other.attribute",
117+
"entity.name.scope-resolution",
118+
"entity.name.class",
119+
],
120+
"settings": {
121+
"foreground": "#2EA990"
122+
}
123+
},
124+
],
125+
},
126+
},
127+
"editor.tabSize": 2,
128+
"editor.fontSize": 16,
129+
"editor.unicodeHighlight.invisibleCharacters": false,
130+
"editor.autoClosingBrackets": "never",
131+
"editor.autoSurround": "never",
132+
"editor.autoClosingQuotes": "never",
133+
"editor.detectIndentation": false,
134+
"editor.lightbulb.enabled": "off",
135+
"workbench.editor.focusRecentEditorAfterClose": false,
136+
"workbench.panel.defaultLocation": "left",
137+
"workbench.panel.opensMaximized": "never",
138+
"workbench.editor.tabSizing": "fixed",
139+
"workbench.editor.tabSizingFixedMaxWidth": 140,
140+
"workbench.sideBar.location": "right",
141+
"debug.allowBreakpointsEverywhere": true,
142+
"debug.onTaskErrors": "abort",
143+
"explorer.confirmDragAndDrop": false,
144+
"explorer.compactFolders": false,
145+
"explorer.confirmDelete": false,
146+
"terminal.integrated.profiles.windows": {
147+
"Windows Terminal": {
148+
"path": "wt",
149+
"args": [
150+
"-p", "cmd", "cmd"
151+
],
152+
"icon": "terminal-bash",
153+
},
154+
"Command Prompt": {
155+
"path": [
156+
"${env:windir}\\Sysnative\\cmd.exe",
157+
"${env:windir}\\System32\\cmd.exe"
158+
],
159+
"args": [],
160+
"icon": "terminal-cmd"
161+
},
162+
"PowerShell": {
163+
"source": "PowerShell",
164+
"icon": "terminal-powershell"
165+
},
166+
"Git Bash": {
167+
"source": "Git Bash"
168+
},
169+
},
170+
"terminal.integrated.tabs.location": "left",
171+
"terminal.integrated.defaultProfile.windows": "Command Prompt",
172+
"C_Cpp.vcFormat.space.groupSquareBrackets": false,
173+
"C_Cpp.loggingLevel": "Debug",
174+
"C_Cpp.codeAnalysis.clangTidy.codeAction.formatFixes": false,
175+
"git.openRepositoryInParentFolders": "never",
176+
"html.autoCreateQuotes": false,
177+
"zig.buildFilePath": "${workspaceFolder}",
178+
"zig.formattingProvider": "off",
179+
"zig.checkForUpdate": false,
180+
"zig.zls.enabled": true,
181+
"zig.zls.highlightGlobalVarDeclarations": true,
182+
"zig.zls.semanticTokens": "full",
183+
"zig.zls.enableArgumentPlaceholders": false,
184+
"zig.zls.inlayHintsExcludeSingleArgument": false,
185+
"zig.zls.enableAutofix": false,
186+
"zig.zls.checkForUpdate": false,
187+
"zig.zls.enableInlayHints": false,
188+
"zig.zls.preferAstCheckAsChildProcess": false,
189+
"files.associations": {
190+
"raylib.h": "c",
191+
"rcamera.h": "c",
192+
"raymath.h": "c"
193+
},
194+
},
195+
"extensions": {
196+
"recommendations": [
197+
"pkief.material-icon-theme"
198+
]
199+
}
200+
}

BaseLua/.vscode/launch.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Debug",
6+
"type": "cppvsdbg",
7+
"request": "launch",
8+
"presentation": {
9+
"hidden": false,
10+
"group": "",
11+
"order": 1
12+
},
13+
"program": "${workspaceFolder}/bin/Debug/${workspaceFolderBasename}.exe",
14+
"args": [ ],
15+
"stopAtEntry": false,
16+
"cwd": "${workspaceFolder}",
17+
"environment": [],
18+
"preLaunchTask": "${defaultBuildTask}",
19+
"console": "integratedTerminal",
20+
"symbolSearchPath": "${workspaceFolder}/bin/Debug/",
21+
},
22+
{
23+
"name": "Debug Attach",
24+
"type": "cppvsdbg",
25+
"request": "attach",
26+
"presentation": {
27+
"hidden": true,
28+
"group": "",
29+
"order": 2
30+
},
31+
"preLaunchTask": "Zig: Run main",
32+
"internalConsoleOptions": "openOnFirstSessionStart",
33+
"processId": "${command:pickProcess}"
34+
}
35+
]
36+
}

0 commit comments

Comments
 (0)