aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 4271526de0801784e0a068e290a0865b647a2391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
    "cmake.useCMakePresets": "always",
    "cmake.options.statusBarVisibility": "visible",
    "cmake.ctest.testExplorerIntegrationEnabled": false,
    "cmake.copyCompileCommands": "${workspaceFolder}/build/compile_commands.json",
    "clangd.path": "clangd",
    "clangd.arguments": [
        "--compile-commands-dir=${workspaceFolder}/build",
        "--query-driver=**/x86_64-pc-elf-g++",
        "--completion-style=detailed",
        "--background-index",
        "--clang-tidy",
        "--header-insertion=iwyu"
    ],
    "files.associations": {
        "**/kstd/include/kstd/**": "cpp",
    },
    "[cpp]": {
        "editor.formatOnSave": true,
        "editor.tabSize": 2,
    },
    "[gas]": {
        "editor.rulers": [
            80
        ]
    },
    "cSpell.words": [
        "acpi",
        "bugprone",
        "cppcoreguidelines",
        "crtc",
        "crtp",
        "efer",
        "functors",
        "idtr",
        "initializable",
        "interprocedural",
        "invlpg",
        "invokable",
        "iwyu",
        "kapi",
        "kstd",
        "malloc",
        "memcmp",
        "memset",
        "multiboot",
        "nodiscard",
        "nolintnextline",
        "nullptr",
        "println",
        "raii",
        "rdmsr",
        "RSDP",
        "rvalues",
        "stringview",
        "sysret",
        "teachos",
        "undelegated",
        "wrmsr"
    ],
    "testMate.cpp.debug.configTemplate": {
        "type": "cppdbg",
        "MIMode": "gdb",
        "program": "${exec}",
        "args": "${argsArray}",
        "cwd": "${cwd}",
        "env": "${envObject}",
        "environment": "${envObjArray}",
        "sourceFileMap": "${sourceFileMapObj}"
    }
}