aboutsummaryrefslogtreecommitdiff
path: root/.config/VSCodium/settings.json
blob: e3f682447f393c603af612112d92c0d18793ce6a (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
{
    // privacy
    "telemetry.telemetryLevel": "off",

    // vim
    "vim.useSystemClipboard": true,

    // UI
    "workbench.tree.indent": 20,
    "editor.mouseWheelZoom": true,
    // hide inlay hints unless Ctrl+Alt is pressed
    "editor.inlayHints.enabled": "offUnlessPressed",

    // general
    "files.insertFinalNewline": true,

    // html
    "html.autoClosingTags": false,

    // rust
    "rust-analyzer.procMacro.enable": true,
    "rust-analyzer.check.command": "clippy",

    "rust-analyzer.rustfmt.rangeFormatting.enable": true,
    "rust-analyzer.rustfmt.extraArgs": ["+nightly"],

    "[rust]": {
        "editor.formatOnSave": true
    },

    "better-comments.tags": [
        {
            "tag": "todo",
            "color": "#FF8C00"
        },
        {
            "tag": "future",
            "color": "#bd93f9"
        }
    ],
    "extensions.ignoreRecommendations": true,
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    }
}