Skip to content

Commit 1a947b3

Browse files
committed
.
1 parent 6dbb8cf commit 1a947b3

File tree

429 files changed

+289767
-12
lines changed

Some content is hidden

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

429 files changed

+289767
-12
lines changed
Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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": true,
16+
"**/.code-workspace": true,
17+
// ZIG FOLDERS --------
18+
"**/zig-cache": true
19+
},
20+
"search.exclude": {
21+
"**/node_modules": true,
22+
"**/bower_components": true,
23+
"**/*.code-search": true,
24+
// ZIG FOLDERS --------
25+
"**/zig-out": true
26+
},
27+
"files.watcherExclude": {
28+
// ZIG FOLDERS --------
29+
"**/zig-cache": true
30+
},
31+
32+
// DarknessFX settings
33+
"telemetry.telemetryLevel": "off",
34+
"workbench.colorTheme": "Default Dark+",
35+
"workbench.startupEditor": "none",
36+
"workbench.colorCustomizations": {
37+
"statusBar.background" : "#1A1A1A",
38+
"statusBar.noFolderBackground" : "#212121",
39+
"statusBar.debuggingBackground": "#263238"
40+
},
41+
"editor.tabSize": 2,
42+
"editor.fontSize": 16,
43+
"editor.unicodeHighlight.invisibleCharacters": false,
44+
"editor.autoClosingBrackets": "never",
45+
"editor.autoSurround": "never",
46+
"editor.autoClosingQuotes": "never",
47+
"editor.detectIndentation": false,
48+
"editor.lightbulb.enabled": false,
49+
"workbench.editor.focusRecentEditorAfterClose": false,
50+
"workbench.panel.defaultLocation": "left",
51+
"workbench.panel.opensMaximized": "never",
52+
"workbench.editor.tabSizing": "fixed",
53+
"workbench.editor.tabSizingFixedMaxWidth": 140,
54+
"workbench.sideBar.location": "right",
55+
"debug.allowBreakpointsEverywhere": true,
56+
"debug.onTaskErrors": "abort",
57+
"explorer.confirmDragAndDrop": false,
58+
"explorer.compactFolders": false,
59+
"explorer.confirmDelete": false,
60+
"terminal.integrated.profiles.windows": {
61+
"Windows Terminal": {
62+
"path": "wt",
63+
"args": [
64+
"-p", "cmd", "cmd"
65+
],
66+
"icon": "terminal-bash",
67+
},
68+
"Command Prompt": {
69+
"path": [
70+
"${env:windir}\\Sysnative\\cmd.exe",
71+
"${env:windir}\\System32\\cmd.exe"
72+
],
73+
"args": [],
74+
"icon": "terminal-cmd"
75+
},
76+
"PowerShell": {
77+
"source": "PowerShell",
78+
"icon": "terminal-powershell"
79+
},
80+
"Git Bash": {
81+
"source": "Git Bash"
82+
},
83+
},
84+
"terminal.integrated.tabs.location": "left",
85+
"terminal.integrated.defaultProfile.windows": "Command Prompt",
86+
"C_Cpp.vcFormat.space.groupSquareBrackets": false,
87+
"C_Cpp.loggingLevel": "Debug",
88+
"C_Cpp.codeAnalysis.clangTidy.codeAction.formatFixes": false,
89+
"git.openRepositoryInParentFolders": "never",
90+
"html.autoCreateQuotes": false,
91+
"zig.buildFilePath": "${workspaceFolder}",
92+
"zig.formattingProvider": "off",
93+
"zig.checkForUpdate": false,
94+
"zig.zls.enabled": true,
95+
"zig.zls.highlightGlobalVarDeclarations": true,
96+
"zig.zls.semanticTokens": "full",
97+
"zig.zls.enableArgumentPlaceholders": false,
98+
"zig.zls.inlayHintsExcludeSingleArgument": false,
99+
"zig.zls.enableAutofix": false,
100+
"zig.zls.checkForUpdate": false,
101+
"zig.zls.enableInlayHints": false,
102+
"zig.zls.preferAstCheckAsChildProcess": false,
103+
"files.associations": {
104+
"lvgl.h": "c",
105+
"lv_indev_private.h": "c",
106+
"lv_refr.h": "c",
107+
"lv_theme.h": "c"
108+
},
109+
},
110+
"extensions": {
111+
"recommendations": [
112+
"pkief.material-icon-theme"
113+
]
114+
}
115+
}

BaseLVGL/.vscode/launch.json

Lines changed: 36 additions & 0 deletions
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)