chore(vscode): add recommended extensions for improved development experience

ms-vscode.cpptools maziac.asm-code-lens editorconfig.editorconfig vivaxy.vscode-conventional-commits ms-vscode.hexeditor webfreak.debug ibm.output-colorizer gruntfuggly.todo-tree naumovs.color-highlight seven1bit.vscode-ext-ansi-color-highlight jeff-hykin.better-cpp-syntax aaron-bond.better-comments

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-02-21 02:40:21 +02:00
parent fbe4b94805
commit 258ac6e2f6
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A
2 changed files with 18 additions and 1 deletions

View File

@ -29,7 +29,8 @@
"C_Cpp.autoAddFileAssociations": false, "C_Cpp.autoAddFileAssociations": false,
"conventionalCommits.scopes": [ "conventionalCommits.scopes": [
"kernel/api", "kernel/api",
"kernel/syscalls" "kernel/syscalls",
"vscode"
] ]
} }
} }

16
Kernel/.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"recommendations": [
"ms-vscode.cpptools",
"maziac.asm-code-lens",
"editorconfig.editorconfig",
"vivaxy.vscode-conventional-commits",
"ms-vscode.hexeditor",
"webfreak.debug",
"ibm.output-colorizer",
"gruntfuggly.todo-tree",
"naumovs.color-highlight",
"seven1bit.vscode-ext-ansi-color-highlight",
"jeff-hykin.better-cpp-syntax",
"aaron-bond.better-comments"
]
}