Skip to content

Instantly share code, notes, and snippets.

@goodjack
Created August 17, 2018 10:57
Show Gist options
  • Save goodjack/a796dde88a69e41a8420e326a39f1848 to your computer and use it in GitHub Desktop.
Save goodjack/a796dde88a69e41a8420e326a39f1848 to your computer and use it in GitHub Desktop.
My VSCode settings.json
{
"auto-close-tag.fullMode": true,
"blade.format.enable": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 18,
"editor.formatOnPaste": true,
"editor.lineHeight": 32,
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "boundary",
"editor.scrollBeyondLastLine": false,
"editor.snippetSuggestions": "top",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120,
"emmet.triggerExpansionOnTab": true,
"files.trimTrailingWhitespace": true,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.blame.heatmap.location": "left",
"gitlens.blame.highlight.locations": [
"gutter",
"line"
],
"gitlens.blame.ignoreWhitespace": true,
"gitlens.codeLens.recentChange.command": "gitlens.diffWithPrevious",
"gitlens.codeLens.scopes": [
"document"
],
"gitlens.gitExplorer.files.compact": false,
"gitlens.hovers.annotations.details": false,
"gitlens.hovers.currentLine.details": false,
"gitlens.menus": false,
"gitlens.recentChanges.highlight.locations": [
"gutter",
"line",
"overview"
],
"gitlens.settings.mode": "advanced",
"gitlens.statusBar.command": "gitlens.toggleFileBlame",
"guides.active.color.dark": "rgba(120, 120, 120, 0.75)",
"guides.normal.style": "none",
"guides.stack.enabled": false,
"php.suggest.basic": false,
"php.validate.run": "onSave",
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1534171539217,
"php-cs-fixer.onsave": true,
"php-docblocker.returnGap": true,
"python.formatting.provider": "yapf",
// "python.venvPath": "~/.pyenv",
"sync.askGistName": false,
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.forceDownload": false,
"sync.gist": "你的 GIST 位置",
"sync.host": "",
"sync.lastDownload": "2018-08-13T14:45:41.774Z",
"sync.lastUpload": "2018-08-17T08:26:29.752Z",
"sync.pathPrefix": "",
"sync.quietSync": true,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontFamily": "FuraCode Nerd Font",
"terminal.integrated.fontSize": 17,
"terminal.integrated.lineHeight": 1.5,
"window.openFilesInNewWindow": "on",
"workbench.colorTheme": "One Dark Pro",
"workbench.editor.tabSizing": "shrink",
"workbench.iconTheme": "material-icon-theme",
"workbench.tree.horizontalScrolling": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment