aboutsummaryrefslogtreecommitdiff
path: root/code/.config/Code/User/settings.json
blob: ebd8091308a22926915000027655d3f9de73a33d (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
    "breadcrumbs.enabled": true,

    "diffEditor.ignoreTrimWhitespace": false,
    "diffEditor.renderIndicators": false,

    "editor.acceptSuggestionOnCommitCharacter": false,
    "editor.accessibilitySupport": "off",
    "editor.dragAndDrop": false,
    "editor.emptySelectionClipboard": false,
    "editor.fontFamily": "'Hack Nerd Font', 'Hack', 'Source Code Pro', 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
    "editor.fontSize": 15,
    "editor.formatOnPaste": false,
    "editor.hover.delay": 200,
    "editor.minimap.enabled": false,
    "editor.mouseWheelZoom": true,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.quickSuggestions": {
        "comments": true,
        "other": true,
        "strings": true
    },
    "editor.renderControlCharacters": true,
    "editor.renderWhitespace": "boundary",
    "editor.roundedSelection": false,
    "editor.wordBasedSuggestions": false,

    "explorer.confirmDelete": false,
    "explorer.confirmDragAndDrop": false,

    "extensions.ignoreRecommendations": true,

    "files.associations": {
        "*.clang-tidy": "yaml"
    },
    "files.eol": "\n",
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/.DS_Store": true,
        "**/bin": true,
        "**/obj": true,
        "**/Release": true,
        "**/Debug": true,
        "**/tidy-build": true,
    },
    "files.insertFinalNewline": true,
    "files.trimTrailingWhitespace": true,

    "git.detectSubmodules": false,

    "telemetry.enableTelemetry": false,
    "telemetry.enableCrashReporter": false,

    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.cursorStyle": "line",

    "update.enableWindowsBackgroundUpdates": false,

    "window.menuBarVisibility": "visible",
    "window.newWindowDimensions": "inherit",
    "window.openFilesInNewWindow": "default",
    "window.restoreWindows": "none",
    "window.title": "${dirty}${activeEditorShort}${separator}${rootName}${separator}${appName}",
    "window.titleBarStyle": "custom",
    "window.zoomLevel": -1,

    "workbench.colorTheme": "dark-plus-syntax",
    "workbench.editor.enablePreview": false,
    "workbench.editor.enablePreviewFromQuickOpen": false,
    "workbench.iconTheme": "material-icon-theme",
    "workbench.list.horizontalScrolling": true,
    "workbench.list.openMode": "doubleClick",

    "zenMode.centerLayout": false,

    "[lua]": {
        "editor.insertSpaces": false,
        "editor.autoIndent": "none"
    },
    "[yaml]": {
        "editor.tabSize": 2,
        "editor.insertSpaces": true,
        "editor.autoIndent": "none"
    },

    "editor.tokenColorCustomizations": {
        "[dark-plus-syntax]": {
            "comments": "#6A9955",
            "textMateRules": [
                {
                    "scope": [
                        "entity.name.tag.localname.cs",
                        "punctuation.definition.tag.cs",
                        "punctuation.terminator.statement.cs",
                        "source.cs comment.block.documentation.cs punctuation.definition.comment.cs",
                        "source.cs comment.block.documentation.cs meta.tag.cs punctuation.separator.equals.cs"
                    ],
                    "settings": {
                        "foreground": "#d4d4d4"
                    }
                },
                {
                    "scope": [
                        "entity.name.variable.property.cs",
                        "entity.name.variable.parameter.cs",
                        "entity.name.variable.field.cs",
                        "entity.name.variable.local.cs",
                        "meta.interpolation.cs variable.other.object.property.cs"
                    ],
                    "settings": {
                        "foreground": "#d4d4d4"
                    },
                },
                {
                    "scope": [
                        "keyword.other.get.cs",
                        "keyword.other.set.cs"
                    ],
                    "settings": {
                        "foreground": "#569cd6"
                    }
                },
                {
                    "scope": [
                        "comment.block.c",
                    ],
                    "settings": {
                        "foreground": "#6A9955"
                    }
                },
                {
                    "scope": [
                        "punctuation.terminator.statement.c"
                    ],
                    "settings": {
                        "foreground": "#d4d4d4"
                    }
                },
                {
                    "scope": [
                        "storage.type.c",
                    ],
                    "settings": {
                        "foreground": "#569cd6"
                    }
                },
            ]
        }
    },

    // Plugin settings

    // C/C++
    "C_Cpp.default.defines": [
        "TARGET_AMD64",
        "TARGET_64BIT"
    ],
    "C_Cpp.intelliSenseEngine": "Default",
    "C_Cpp.workspaceParsingPriority": "high",

    // C/C++ Advanced Lint
    "c-cpp-flylint.clang.standard": [ "c++11" ],
    "c-cpp-flylint.flexelint.enable": false,

    // Crates
    "crates.compatibleDecorator": "✓",

    // GitLens
    "gitlens.advanced.messages": {
        "suppressCommitHasNoPreviousCommitWarning": false,
        "suppressCommitNotFoundWarning": false,
        "suppressFileNotUnderSourceControlWarning": false,
        "suppressGitVersionWarning": false,
        "suppressLineUncommittedWarning": false,
        "suppressNoRepositoryWarning": false,
    },

    // Material Icon Theme
    "material-icon-theme.folders.color": "#26a69a",

    // C#
    "csharp.suppressHiddenDiagnostics": false,
    "csharp.suppressDotnetInstallWarning": true,
    "csharp.suppressDotnetRestoreNotification": true,
    "omnisharp.enableEditorConfigSupport": true,
    "omnisharp.enableRoslynAnalyzers": true,
    "omnisharp.useGlobalMono": "auto",
    "razor.disabled": true,

    // Rust (rls)
    "rust.cfg_test": true,
    "rust.clippy_preference": "on",
    "rust.unstable_features": true,

    // Rust analyzer
    "rust-analyzer.inlayHints.enable": false,

    "xmlTools.enforcePrettySelfClosingTagOnFormat": true,

    "cSpell.userWords": [
        "intrinsics",
        "unpause",
        "bitflags",
        "cifs",
        "cmus",
        "datetime",
        "derive",
        "dylib",
        "emby",
        "encoder",
        "image",
        "jellyfin",
        "magick",
        "minecraft",
        "mutex",
        "openssl",
        "peekable",
        "read",
        "serde",
        "serilog",
        "skia",
        "ubyte",
        "upnp",
        "ushort"
    ],
}