diff options
Diffstat (limited to '.vscode/settings.json')
| -rw-r--r-- | .vscode/settings.json | 42 |
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 |
