Skip to content

Instantly share code, notes, and snippets.

@bryandh
Last active May 18, 2018 07:53
Show Gist options
  • Save bryandh/11d199db18082dd09fb4b23c5f989d74 to your computer and use it in GitHub Desktop.
Save bryandh/11d199db18082dd09fb4b23c5f989d74 to your computer and use it in GitHub Desktop.
VS Code settings

My personal VS Code settings

// Place your settings in this file to overwrite the default settings
{
"workbench.activityBar.visible": false, // Removes the activity bar on the left
"workbench.editor.tabCloseButton": "off", // Removes the close button from tabs
"workbench.colorTheme": "Aurelia Solarized (light)",
"editor.detectIndentation": false,
"html.format.wrapLineLength": 0, // Maximum amount of characters per line (0 = disable)
"window.zoomLevel": 0,
"window.nativeTabs": false,
"editor.minimap.enabled": false,
"editor.lineNumbers": "on",
"aurelia.autocomplete.quotes": "single",
"editor.multiCursorModifier": "alt",
"workbench.fontAliasing": "antialiased",
"explorer.openEditors.visible": 0, // Removes the 'OPEN EDITORS' accordion in the EXPLORER
"editor.rulers": [
120 // Places a vertical line at the 120th character in files
],
"[scss]": {
"editor.tabSize": 2
},
"[html]": {
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true,
},
"editor.tabSize": 4
},
"editor.tabSize": 4,
"beautify.config": {
"indent_size": 4,
"preserve_newlines": true, // Prevents empty lines from being deleted
"end_with_newline": true, // Inserts a new line at the end of the file
"css": {
"indent_size": 2
}
},
"workbench.iconTheme": "vscode-icons",
"explorer.confirmDragAndDrop": true,
"vsicons.projectDetection.autoReload": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/platforms/**": true,
"**/plugins/**": true,
"**/www/**": true,
"**/dist/**": true,
"**/export/**": true,
"**/jspm_packages/**": true,
"**/typings/**": true
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"workbench.sideBar.location": "right",
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#5a5a5a"
},
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment