Skip to content

Instantly share code, notes, and snippets.

@techiepriyansh
Last active June 7, 2023 09:27
Show Gist options
  • Save techiepriyansh/24c67058a209a78c311f2c9079917df3 to your computer and use it in GitHub Desktop.
Save techiepriyansh/24c67058a209a78c311f2c9079917df3 to your computer and use it in GitHub Desktop.
My VSCode settings.json
{
"telemetry.telemetryLevel": "off",
"update.enableWindowsBackgroundUpdates": false,
"update.mode": "none",
"workbench.colorTheme": "Default Light+",
"workbench.activityBar.visible": false,
// "editor.lineHeight": 1,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"workbench.colorCustomizations": {
// "editor.background": "#e8e8e8",
// "editor.background": "#f0f0f0",
// "editor.lineHighlightBackground": "#e8e8e8"
"[Default Light+]": {
"statusBar.background" : "#00000000",
"statusBar.foreground": "#6f6f6f",
},
},
"editor.fontFamily": "Consolas",
"editor.tabCompletion": "on",
"extensions.showRecommendationsOnlyOnDemand": true,
"extensions.ignoreRecommendations": true,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"scm.diffDecorations": "none",
"git.decorations.enabled": false,
"editor.minimap.enabled": false,
"files.associations": {
"*.sage": "python",
},
"explorer.confirmDelete": false,
"security.workspace.trust.untrustedFiles": "open",
"workbench.startupEditor": "none",
"editor.fontSize": 18,
"zenMode.hideLineNumbers": false,
"zenMode.hideStatusBar": false,
"editor.inlineSuggest.enabled": true,
"terminal.integrated.fontFamily": "Cascadia Code PL",
"rust-analyzer.checkOnSave.command": "clippy",
"editor.lineNumbers": "on",
"window.menuBarVisibility": "compact",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment