aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2025-12-15 17:13:12 +0100
committerFelix Morgner <felix.morgner@ost.ch>2025-12-15 17:13:12 +0100
commit7b9482ae637126ac9337876e60f519b493437711 (patch)
tree6fc71a253c8b0325d303bd34c95b564ba536ed14 /.vscode/settings.json
parent116f9332a206767c45095950f09f7c7447b561cf (diff)
parenta9eeec745e29d89afd48ee43d09432eb6fc35be7 (diff)
downloadteachos-7b9482ae637126ac9337876e60f519b493437711.tar.xz
teachos-7b9482ae637126ac9337876e60f519b493437711.zip
os: rework kernel architecture
Rework the code structure and architecture of the kernel by separating platform-dependent and platform-independent code more cleanly. As of this patchset, full feature parity has not been achieved. Nonetheless, a sufficient subset of functionality has been ported to the new architecture to demonstrate the feasibility of the new structure.
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json42
1 files changed, 34 insertions, 8 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 6178035..7f588f4 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,18 +1,44 @@
{
"cmake.useCMakePresets": "always",
"cmake.options.statusBarVisibility": "visible",
-
+
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}/build",
- "--query-driver=/opt/toolchain/bin/x86_64-pc-elf-g++"
+ "--query-driver=**/x86_64-pc-elf-g++"
],
-
+
+ "files.associations": {
+ "**/kstd/include/kstd/**": "cpp",
+ },
+
"[cpp]": {
"editor.formatOnSave": true,
"editor.tabSize": 2,
},
-
- "[python]": {
- "editor.defaultFormatter": "ms-python.black-formatter"
- },
- } \ No newline at end of file
+
+ "[gas]": {
+ "editor.rulers": [
+ 80
+ ]
+ },
+ "cSpell.words": [
+ "acpi",
+ "crtc",
+ "efer",
+ "initializable",
+ "interprocedural",
+ "invlpg",
+ "invokable",
+ "iwyu",
+ "kapi",
+ "kstd",
+ "memcmp",
+ "multiboot",
+ "nolintnextline",
+ "rdmsr",
+ "rvalues",
+ "sysret",
+ "teachos",
+ "wrmsr"
+ ]
+} \ No newline at end of file