-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
{
// https://lean-lang.org/documentation/semantic-tokens/
// "The colors in this example are not meant to be nice"
"editor.semanticTokenColorCustomizations": {
"rules": {"function": "#ff0000", "property": "#00ff00", "variable": "#ff77ff"}
},
"editor.wordWrap": "on",
// This is what everyone else does
"files.insertFinalNewline": true,
// Stop VSCodium from complaining about these
"git.autofetch": true,
"git.enableSmartCommit": true,
// Manual line wrap is gross
"html.format.wrapLineLength": 0,
// Make title bar consistent with other apps in KDE
"window.customTitleBarVisibility": "never",
"window.titleBarStyle": "native",
}