Skip to content

Instantly share code, notes, and snippets.

@robin-rpr
Created October 17, 2018 17:50
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 robin-rpr/2bb193fa6f24ed339d001cff6b300ad0 to your computer and use it in GitHub Desktop.
Save robin-rpr/2bb193fa6f24ed339d001cff6b300ad0 to your computer and use it in GitHub Desktop.
VS Code Settings & Plugins
- http://input.fontbureau.com/download/
{
"editor.fontFamily": "Input Mono",
"editor.lineHeight" : 15,
"editor.lineNumbers" : "on",
"editor.tabSize" : 2,
"editor.insertSpaces" : true,
"editor.roundedSelection" : false,
"editor.selectionHighlight" : false,
"editor.cursorBlinking" : "blink",
"editor.renderIndentGuides" : true,
"editor.renderLineHighlight": "none",
"editor.matchBrackets" : false,
"editor.minimap.enabled" : false,
"editor.cursorStyle" : "block",
"editor.renderWhitespace" : "none",
"editor.letterSpacing" : 0.5,
"editor.fontWeight" : "400",
"editor.parameterHints" : true,
"explorer.openEditors.visible": 0,
"workbench.editor.showTabs": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.startupEditor" : "none",
"workbench.colorTheme" : "Dracula Soft",
"workbench.iconTheme" : "material-icon-theme",
"window.restoreFullscreen" : true,
"files.exclude": {
"**/.git" : true,
"**/.svn" : true,
"**/.hg" : true,
"**/.DS_Store": true,
"**/.idea" : true
},
"files.autoSave" : "onFocusChange",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/vendor/**" : true
},
"files.hotExit" : "onExit",
"files.trimTrailingWhitespace": true,
"zenMode.restore" : true,
"zenMode.centerLayout" : false,
"zenMode.fullScreen" : true,
"zenMode.hideActivityBar": true,
"search.exclude": {
"**/node_modules" : true,
"**/bower_components": true,
"**/vendor" : true
},
"extensions.autoUpdate": true,
"terminal.integrated.shell.osx" : "/bin/zsh",
"terminal.integrated.shell.windows": "D:\\Tools\\Git\\bin\\bash.exe",
"terminal.integrated.shell.linux" : "/bin/zsh",
"terminal.integrated.fontFamily" : "Input Mono",
"terminal.integrated.fontSize": 12,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry" : false,
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
"git.enableSmartCommit": true,
"git.autofetch" : true,
"alignment.beforeSave": false,
"gitlens.blame.heatmap.enabled": false,
"gitlens.currentLine.enabled" : false,
"gitlens.hovers.enabled" : true,
"gitlens.codeLens.enabled" : false,
"gitlens.statusBar.enabled" : false,
"material-icon-theme.showUpdateMessage": false,
"eslint.enable" : false,
"eslint.autoFixOnSave": true,
"[python]": {
"editor.insertSpaces" : true,
"editor.tabSize" : 4,
"editor.renderIndentGuides": false,
"editor.renderWhitespace" : "boundary"
},
"python.linting.pep8Args" : ["--ignore=E501"],
"python.pythonPath" : "/Users/devfjd/Developer/.virtualenvs/devenv/bin/python",
"python.linting.enabled" : true,
"python.linting.pylintEnabled": false,
"python.linting.pep8Enabled" : true,
"gitlens.advanced.messages" : {
"suppressShowKeyBindingsNotice": true
},
"[php]": {
"editor.insertSpaces" : false,
"editor.tabSize" : 4,
"editor.renderIndentGuides": true,
"editor.renderWhitespace" : "boundary"
},
"php.suggest.basic": false,
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment