Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@iamatypeofwalrus
Created January 19, 2018 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamatypeofwalrus/7b236be284088b6e432ed1868e0d7d4f to your computer and use it in GitHub Desktop.
Save iamatypeofwalrus/7b236be284088b6e432ed1868e0d7d4f to your computer and use it in GitHub Desktop.
My VS Code Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.rulers": [
80,
100
],
"editor.autoIndent": true,
"editor.formatOnType": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"explorer.autoReveal": false,
"explorer.openEditors.visible": 0,
"extensions.autoUpdate": true,
"extensions.ignoreRecommendations": true,
"files.autoSave": "onFocusChange",
"git.confirmSync": false,
"gitlens.annotations.file.gutter.format": "${id} ${authorAgo|30}",
"gitlens.codeLens.locations": [
"document"
],
"gitlens.statusBar.enabled": false,
"gitlens.gitExplorer.enabled": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/build/": true
},
"java.errors.incompleteClasspath.severity": "ignore",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"telemetry.enableTelemetry": false,
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1,
"window.zoomLevel": 0,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.startupEditor": "newUntitledFile",
"window.restoreWindows": "none",
"window.nativeTabs": false,
"workbench.panel.location": "bottom",
"explorer.confirmDragAndDrop": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": false
},
"zenMode.fullScreen": false,
"zenMode.hideTabs": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment