openquest/.vscode/settings.json

25 lines
776 B
JSON

{
// region rust-analyzer
// Relevant reference for settings: https://rust-analyzer.github.io/manual.html
// Theming
"editor.inlayHints.fontSize": 12,
"editor.inlayHints.padding": true,
"rust-analyzer.inlayHints.closingBraceHints.enable": false,
// Background Colors
"workbench.colorCustomizations": {
"[Visual Studio Dark]": { // Name of the theme to override in (check in Preferences: Color Theme)
"editorInlayHint.foreground": "#868686f0",
"editorInlayHint.background": "#121212",
// Overrides for specific kinds of inlay hints
"editorInlayHint.typeForeground": "#a8a4a8f0",
"editorInlayHint.parameterForeground": "#fdb6fdf0",
}
}
// endregion
}