Skip to content

Instantly share code, notes, and snippets.

@TomCahill
Last active December 26, 2018 18:43
Show Gist options
  • Select an option

  • Save TomCahill/3447179363198a0182d73c497d256298 to your computer and use it in GitHub Desktop.

Select an option

Save TomCahill/3447179363198a0182d73c497d256298 to your computer and use it in GitHub Desktop.
VSCode user settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 13,
"editor.tabSize": 2,
"editor.fontLigatures": true,
"editor.cursorStyle": "block",
"editor.renderWhitespace": "boundary",
"editor.multiCursorModifier": "alt",
"explorer.openEditors.visible": 0,
"window.openFoldersInNewWindow": "on",
"window.restoreWindows": "all",
"window.zoomLevel": 0,
"workbench.startupEditor": "none",
"workbench.colorTheme": "Monokai",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.autoReveal": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"gitlens.keymap": "chorded",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/deploy/*": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment