Skip to content

Instantly share code, notes, and snippets.

@Brethel
Last active September 23, 2020 15:58
Show Gist options
  • Save Brethel/f4a85dcdeacbfc1a0eaa76dcb667c785 to your computer and use it in GitHub Desktop.
Save Brethel/f4a85dcdeacbfc1a0eaa76dcb667c785 to your computer and use it in GitHub Desktop.
minimal vscode settings
{
"editor.fontFamily": "Fira Code iScript",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"extensions.autoUpdate": true,
"editor.highlightActiveIndentGuide": true,
"editor.cursorStyle": "line",
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"editor.wordWrap": "on",
"editor.multiCursorModifier": "alt",
"editor.lineHeight": 21,
"editor.codeLens": true,
"editor.renderWhitespace": "none",
"editor.renderLineHighlight": "line",
"editor.autoIndent": "advanced",
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.letterSpacing": 1,
"editor.matchBrackets": "near",
"editor.tabSize": 4,
"editor.wrappingIndent": "same",
"editor.insertSpaces": false,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 80,
"editor.minimap.showSlider": "always",
"editor.tabCompletion": "off",
"editor.colorDecorators": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.quickSuggestionsDelay": 0,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.zoomLevel": 0,
"git.confirmSync": false,
"files.hotExit": "onExit",
"files.defaultLanguage": "plaintext",
"files.trimTrailingWhitespace": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1500,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"/node_modules": true,
"/node_modules/": true
},
"explorer.decorations.badges": true,
"explorer.decorations.colors": true,
"breadcrumbs.enabled": true,
"window.title": "${dirty} ${rootName} ${separator} ${activeEditorMedium}",
"window.titleBarStyle": "custom",
"workbench.settings.enableNaturalLanguageSearch": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"sideBar.foreground": "#ccffff",
"editor.lineHighlightBackground": "#002200",
"editorError.foreground": "#ff0000",
"editorWarning.foreground": "#ffaa00",
"editorInfo.foreground": "#c0c0aa",
"statusBar.foreground": "#ccccff",
"statusBar.border": "#ccccff",
"tab.activeBackground": "#77cc77",
"tab.hoverBackground": "#447744",
"tab.activeForeground": "#000000",
"tab.inactiveForeground": "#d0d0d0",
"tab.inactiveBackground": "#444444",
"editorLineNumber.foreground": "#447744",
"editorLineNumber.activeForeground": "#00ff00",
"breadcrumb.background": "#77cc77",
"breadcrumb.foreground": "#000000",
"panel.background": "#112211"
},
"workbench.fontAliasing": "antialiased",
"workbench.panel.defaultLocation": "bottom",
"workbench.tree.indent": 25,
"workbench.editor.labelFormat": "medium",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.tips.enabled": true,
"workbench.activityBar.visible": true,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment