Skip to content

Instantly share code, notes, and snippets.

@davidsword
Last active February 20, 2019 00:34
Show Gist options
  • Save davidsword/cb49caa8cf2806a78b23c7db89feb628 to your computer and use it in GitHub Desktop.
Save davidsword/cb49caa8cf2806a78b23c7db89feb628 to your computer and use it in GitHub Desktop.
VSCode settings json (20190219)
{
// App
"workbench.startupEditor": "newUntitledFile",
"workbench.settings.editor": "json",
"files.defaultLanguage": "php",
"editor.minimap.enabled": false,
"breadcrumbs.enabled": true,
// Explorer
"workbench.quickOpen.closeOnFocusLost": false,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.list.openMode": "doubleClick",
"explorer.openEditors.visible": 0,
"explorer.confirmDragAndDrop": false,
"files.insertFinalNewline": true,
"explorer.confirmDelete": false,
// App & Editor Visuals.
"workbench.colorTheme": "Material Theme Palenight High Contrast",
"materialTheme.accent": "Purple",
"window.zoomLevel": 0,
"workbench.statusBar.feedback.visible": false,
"workbench.editor.tabCloseButton": "off",
// Editor behaviour.
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.wordWrap": "on",
"editor.snippetSuggestions": "top",
// Keyboard.
"editor.multiCursorModifier": "ctrlCmd",
// Textography.
"editor.fontFamily": "Operator Mono",
"terminal.integrated.fontFamily": "Operator Mono",
"editor.fontSize": 17,
"editor.lineHeight": 24.65,
"editor.wordWrapColumn": 100,
"editor.fontWeight": "300",
"editor.cursorWidth": 4,
"editor.fontLigatures": true,
"editor.letterSpacing": 0.5,
"workbench.fontAliasing": "auto",
"terminal.integrated.letterSpacing": 0.5,
"terminal.integrated.fontSize": 16,
"terminal.integrated.drawBoldTextInBrightColors": false,
"editor.rulers": [
100
],
// Whitespace.
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
// EMMET
"emmet.triggerExpansionOnTab": true,
// MARKDOWN
"[markdown]": {
"editor.formatOnSave": false,
"editor.quickSuggestions": true
},
// GIT.
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.allowForcePush": true,
"gitlens.statusBar.alignment": "left",
"gitlens.gitExplorer.files.layout": "auto",
"gitlens.keymap": "altermate",
"gitlens.advanced.message": {
"supressShowKeyBindingsNotice": true
},
// PHP
"php.suggest.basic" : true,
"files.associations" : {
"*.php": "php" // for intellisense.
},
// EXT: PHPCS & PHPCBF
"phpcs.standard": "WordPress",
"phpcs.showSources": true,
"phpcs.executablePath": "/usr/local/bin/phpcs",
"phpcbf.onsave" : false,
"phpcbf.standard" : "WordPress",
"phpcbf.executablePath": "/usr/local/bin/phpcbf",
"phpcs.ignorePatterns" : [
"*/vendor/*",
"*/vendors/*"
],
// @TODO save-and-run ext for `phpcbf` on save
// EXT: Settings Sync.
"sync.gist": "62fdb85b8b0ab2b6a0f9222f1b46ab2a",
"sync.quietSync": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
// EXT: Macros
"macros": {
"resetWorkspace": [
"workbench.files.action.collapseExplorerFolders",
"workbench.action.closeAllEditors"
]
},
// MISC EXT
"projectManager.git.baseFolders": [],
"workbench.activityBar.visible": true,
// UNSORTED:
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment