summary refs log tree commit diff stats
path: root/.config/VSCodium/User/settings.json
blob: 6d72dd3ac5fb0c1e8a41889d8cedbbdf60dc366c (plain) (blame)
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
72
73
{
  "breadcrumbs.enabled": true,
  "clang-format.executable": "/usr/bin/clang-format",
  "d.servedPath": "$HOME/.local/share/code-d/bin/serve-d",
  "editor.acceptSuggestionOnEnter": "off",
  "editor.fontFamily": "JetBrains Mono",
  "editor.fontLigatures": true,
  "editor.formatOnPaste": true,
  "editor.formatOnSave": true,
  "editor.minimap.enabled": false,
  "extensions.showRecommendationsOnlyOnDemand": true,
  "files.enableTrash": false,
  "git.autoStash": true,
  "git.confirmSync": false,
  "git.defaultCloneDirectory": "$HOME/dev/github",
  "git.enableCommitSigning": true,
  "git.fetchOnPull": true,
  "gitlens.advanced.telemetry.enabled": false,
  "go.formatTool": "goimports",
  "go.testFlags": [
    "-v",
    "--bench",
    ".",
    "--benchmem"
  ],
  "go.useLanguageServer": true,
  "java.configuration.checkProjectSettingsExclusions": false,
  "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
  "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
  "[javascript]": {
    "editor.formatOnSave": false,
    "editor.tabSize": 2
  },
  "[makefile]": {
    "editor.insertSpaces": false,
    "editor.tabSize": 4
  },
  "prettier.singleQuote": true,
  "rust.clippy_preference": "on",
  "rust.crate_blacklist": null,
  "rust.show_warnings": true,
  "standard.autoFixOnSave": true,
  "telemetry.enableCrashReporter": false,
  "[typescript]": {
    "editor.tabSize": 2,
    "editor.defaultFormatter": "vscode.typescript-language-features"
  },
  "update.enableWindowsBackgroundUpdates": false,
  "update.mode": "none",
  "update.showReleaseNotes": false,
  "window.menuBarVisibility": "toggle",
  "workbench.colorTheme": "Dracula",
  "workbench.enableExperiments": false,
  "workbench.iconTheme": "material-icon-theme",
  "workbench.settings.enableNaturalLanguageSearch": false,
  "editor.formatOnSave": true,
  "githubPullRequests.telemetry.enabled": false,
  "[c]": {
    "editor.defaultFormatter": "ms-vscode.cpptools",
    "editor.tabSize": 2
  },
  "C_Cpp.default.cStandard": "c11",
  "C_Cpp.default.intelliSenseMode": "clang-x64",
  "C_Cpp.default.cppStandard": "c++17",
  "C_Cpp.clang_format_style": "Mozilla",
  "todo-tree.tree.showScanModeButton": false,
  "rust-client.engine": "rust-analyzer",
  "rust-analyzer.updates.channel": "nightly",
  "python.formatting.provider": "black",
  "python.pythonPath": "/usr/bin/python3",
  "shellcheck.executablePath": "/usr/bin/shellcheck",
  "git.enableStatusBarSync": false
}