Skip to content

Instantly share code, notes, and snippets.

@vaibhavsingh97
Created May 26, 2019 17:32
Show Gist options
  • Save vaibhavsingh97/5cce5f579bd53c1c6e7a88075b6d2793 to your computer and use it in GitHub Desktop.
Save vaibhavsingh97/5cce5f579bd53c1c6e7a88075b6d2793 to your computer and use it in GitHub Desktop.
VS Code settings JSON to maximise productivity and code faster.
{
// Theme Setup
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
// Font Setup
"editor.fontFamily": "Dank Mono, Operator mono,Source Code Pro, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 19,
"editor.fontLigatures": true,
"editor.lineHeight": 26.1,
"editor.fontWeight": "400",
"editor.letterSpacing": 0.5,
"workbench.fontAliasing": "auto",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"terminal.integrated.fontSize": 18,
"terminal.integrated.fontWeight": "500",
// Workbench settings
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": true,
// UI Improvements
"explorer.openEditors.visible": 1,
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"editor.dragAndDrop": false,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
"editor.multiCursorModifier": "ctrlCmd",
"workbench.statusBar.feedback.visible": false,
// Cursor setup
"editor.cursorWidth": 1,
//White space setup
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"diffEditor.ignoreTrimWhitespace": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment