]> Repositories - machines.git/blob - monsoon/dotfiles/.config/VSCodium/User/settings.json
Configure VSCode
[machines.git] / monsoon / dotfiles / .config / VSCodium / User / settings.json
1 {
2         // Confirmation dialogs
3         "window.confirmSaveUntitledWorkspace": false,
4         "explorer.confirmDelete": false,
5         "explorer.confirmDragAndDrop": false,
6         "explorer.confirmPasteNative": false,
7         "git.confirmSync": false,
8
9         // Appearance
10         "workbench.colorTheme": "Default Light Modern",
11         "workbench.tree.indent": 40,
12         "editor.minimap.enabled": false,
13         "zenMode.fullScreen": false,
14
15         // Formatting
16         "files.trimTrailingWhitespace": true,
17         "files.insertFinalNewline": true,
18         "editor.insertSpaces": false,
19
20         // Languages
21         "zig.zls.enabled": "on",
22
23         "[nix]": {
24                 "editor.tabSize": 4,
25                 "editor.insertSpaces": false
26         },
27
28         // Spell check
29         "cSpell.userWords": [
30                 "ayoreis",
31                 "CMOS",
32                 "datasheet",
33                 "disko",
34                 "GATERON",
35                 "gitweb",
36                 "homelab",
37                 "Komuhn",
38                 "nixos",
39                 "nixpkgs",
40                 "overengineered",
41                 "pkgs",
42                 "ratiometric",
43                 "Reis",
44                 "vibecoding",
45                 "Videography",
46                 "Zlox"
47         ],
48
49         // AI
50         "chat.disableAIFeatures": false,
51         "github.copilot.nextEditSuggestions.enabled": true,
52 }