aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 96d6ab4ede54b5469c68644309afbf1a5c8d6beb (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
{
    "cmake.useCMakePresets": "always",
    "cmake.options.statusBarVisibility": "visible",
 
    "clangd.arguments": [
        "--compile-commands-dir=${workspaceFolder}/build",
        "--query-driver=**/x86_64-pc-elf-g++"
    ],
 
    "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",
        "initializable",
        "interprocedural",
        "invlpg",
        "invokable",
        "iwyu",
        "kapi",
        "kstd",
        "malloc",
        "memcmp",
        "memset",
        "multiboot",
        "nodiscard",
        "nolintnextline",
        "nullptr",
        "println",
        "raii",
        "rdmsr",
        "rvalues",
        "stringview",
        "sysret",
        "teachos",
        "undelegated",
        "wrmsr"
    ]
}