Skip to content

Instantly share code, notes, and snippets.

@steveadams
Last active August 9, 2018 17:24
Show Gist options
  • Save steveadams/517e7f18482768eb91562aafef40050b to your computer and use it in GitHub Desktop.
Save steveadams/517e7f18482768eb91562aafef40050b to your computer and use it in GitHub Desktop.
My Visual Studio Code settings
// Place your settings in this file to overwrite the default settings
{
"editor.cursorStyle": "line",
"editor.detectIndentation": true,
"editor.tabSize": 4,
"editor.fontSize": 15,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.insertSpaces": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderControlCharacters": false,
"editor.renderLineHighlight": "line",
"editor.renderWhitespace": "all",
"editor.rulers": [
80
],
"editor.snippetSuggestions": "top",
"extensions.ignoreRecommendations": true,
"files.autoSaveDelay": 1000,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true
},
"vscode-language-todo.regex": "@?(TODO|FIXME|OPTIMIZE)",
"window.zoomLevel": 1,
"workbench.colorTheme": "Nord",
"files.autoSave": "onFocusChange",
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"window.openFoldersInNewWindow": "on",
"tslint.autoFixOnSave": true,
"explorer.confirmDragAndDrop": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment