Skip to content

Instantly share code, notes, and snippets.

@llint
Last active March 14, 2024 03:41
Show Gist options
  • Save llint/64e79ab10539266bc7494a11a3b0e329 to your computer and use it in GitHub Desktop.
Save llint/64e79ab10539266bc7494a11a3b0e329 to your computer and use it in GitHub Desktop.
Visual Studio Code User Settings
{
"files.trimTrailingWhitespace": true,
"editor.fontFamily": "Cascadia Mono",
"diffEditor.renderSideBySide": false,
"editor.codeLens": true,
"workbench.colorTheme": "Solarized Light",
"editor.minimap.enabled": true,
"workbench.colorCustomizations": {
"editor.selectionBackground": "#00000080", // hex RGB(A) for selection
"editor.selectionHighlightBackground": "#00000020", // hex RGB(A) for occurences
"editor.inactiveSelectionBackground": "#00000010",
"editorIndentGuide.background1": "#00000010"
},
"window.zoomLevel": 0,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.formatOnType": false,
"editor.formatOnPaste": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"csharp.suppressHiddenDiagnostics": true,
"extensions.autoUpdate": false,
"terminal.integrated.fontFamily": "Consolas",
"extensions.ignoreRecommendations": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment