Skip to content

Instantly share code, notes, and snippets.

@klinquist
Created April 20, 2018 16:16
Show Gist options
  • Save klinquist/2a5a9bf558d3d94a58da85d2194e6130 to your computer and use it in GitHub Desktop.
Save klinquist/2a5a9bf558d3d94a58da85d2194e6130 to your computer and use it in GitHub Desktop.
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Panic Sans",
"editor.fontSize":12,
// "editor.fontFamily": "Fira Code",
// "editor.fontSize": 12,
// "editor.fontLigatures": true,
"editor.minimap.enabled": false,
"workbench.editor.enablePreview": false,
"files.autoSave": "afterDelay",
"window.reopenFolders":"all",
"eslint.autoFixOnSave": true,
"workbench.sideBar.location": "right",
"terminal.integrated.shell.osx": "/bin/zsh",
"git.confirmSync": false,
"window.zoomLevel": 0,
"window.newWindowDimensions":"inherit",
"files.watcherExclude": {
"**/.git/objects/**": true
},
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting.
"search.exclude": {
"**/node_modules": false,
"**/bower_components": true
},
"gitProjectManager.baseProjectsFolders": [
"~/Code"
],
"gitProjectManager.storeRepositoriesBetweenSessions": true,
"gitProjectManager.ignoredFolders": ["node_modules"],
"gitProjectManager.openInNewWindow": true,
"vsicons.dontShowNewVersionMessage": true,
"vsicons.projectDetection.disableDetect": true,
"editor.formatOnType": true,
"debug.inlineValues": true,
"editor.formatOnPaste": true,
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "none",
"workbench.iconTheme": "vscode-icons",
"git.enableSmartCommit": true,
"git.autofetch": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment