Customize vscode settings

This commit is contained in:
LagoLunatic
2024-10-17 20:44:13 -04:00
parent 26ca0cd4b5
commit f7d2413a42
2 changed files with 18 additions and 9 deletions
-2
View File
@@ -1,8 +1,6 @@
{
"recommendations": [
"llvm-vs-code-extensions.vscode-clangd",
"ms-python.black-formatter",
"ms-python.flake8",
],
"unwantedRecommendations": [
"ms-vscode.cmake-tools",
+18 -7
View File
@@ -7,17 +7,28 @@
"files.encoding": "utf8",
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
// "editor.tabSize": 2,
"files.autoSave": "onFocusChange",
"editor.tabSize": 4,
// "files.autoSave": "onFocusChange",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.associations": {
"*.inc": "c",
".clangd": "yaml"
"*.inc": "cpp",
".clangd": "yaml",
"*.json": "json",
"dspproc.c": "cpp",
"dsptask.c": "cpp",
"osdsp.c": "cpp",
"osdsp_task.c": "cpp",
},
// Disable C/C++ IntelliSense, use clangd instead
"C_Cpp.intelliSenseEngine": "disabled",
"search.useIgnoreFiles": false,
"search.exclude": {
"build/*/config.json": true,
"build/**/*.MAP": true,
"build.ninja": true,
".ninja_*": true,
"objdiff.json": true,
".cache/**": true,
},
}