Created
July 10, 2020 18:50
-
-
Save mike-potter/9e6e75518669af7f32b2691d9410e2c9 to your computer and use it in GitHub Desktop.
VSCode settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Liberation Mono for Powerline, Menlo, Monaco, 'Courier New', monospace", | |
"editor.lineHeight": 17, | |
"php.suggest.basic": false, | |
"editor.tabCompletion": "on", | |
"php-docblocker.qualifyClassNames": true, | |
"phpcs.standard": "project/tests/.phpcs.xml", | |
"phpcs.autoConfigSearch": false, | |
"[php]": { | |
"editor.defaultFormatter": "persoderlind.vscode-phpcbf" | |
}, | |
"gitlens.currentLine.enabled": false, | |
"search.collapseResults": "alwaysCollapse", | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/.git": true, | |
"**/storage": true, | |
"**/tests": true, | |
"_ide_helper.php": true, | |
"_ide_helper_models.php": true, | |
"package-lock.json": true, | |
".history": true, | |
}, | |
"search.followSymlinks": false, | |
"files.eol": "\n", | |
"files.insertFinalNewline": true, | |
"files.trimTrailingWhitespace": true, | |
"[markdown]": { | |
"files.trimTrailingWhitespace": false | |
}, | |
"editor.cursorBlinking": "smooth", | |
"editor.fontLigatures": false, | |
"editor.formatOnPaste": false, | |
"editor.autoIndent": "advanced", | |
"git.showPushSuccessNotification": true, | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"files.associations": { | |
"*.inc": "php", | |
}, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.colorCustomizations": { | |
"sideBar.background": "#2f2f2fff", | |
"editor.background": "#1f1f1f", | |
}, | |
"workbench.tree.indent": 16, | |
"cSpell.ignorePaths": [ | |
"**/package-lock.json", | |
"**/node_modules/**", | |
"**/vscode-extension/**", | |
"**/.git/objects/**", | |
".vscode", | |
"composer.json" | |
], | |
"cSpell.userWords": [ | |
"docksal", | |
"gitlab", | |
"interruptible", | |
"kubernetes" | |
], | |
"gitlab.showIssueLinkOnStatusBar": false, | |
"docker.containers.groupBy": "Networks", | |
"docker.containers.label": "ContainerName", | |
"docker.containers.description": [ | |
"Status", | |
"RepositoryNameAndTag", | |
"ContainerName", | |
], | |
"git.untrackedChanges": "separate", | |
"window.openFoldersInNewWindow": "on", | |
"phpcbf.executablePath": "~/.composer/vendor/bin/phpcbf", | |
"phpcbf.standard": "Drupal", | |
"shebang.associations": [ | |
{ | |
"pattern": "^#!/bin/bash$", | |
"language": "shellscript" | |
} | |
], | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.renderControlCharacters": false, | |
"editor.renderWhitespace": "all", | |
"window.zoomLevel": 2, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.scrollback": 2000, | |
"terminal.integrated.copyOnSelection": true, | |
"terminal.external.osxExec": "iTerm 2.app", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"gitlens.codeLens.authors.enabled": false, | |
"gitlens.codeLens.recentChange.enabled": false, | |
"terminal.explorerKind": "external", | |
"debug.node.autoAttach": "on", | |
"eslint.codeActionsOnSave.mode": "problems", | |
"editor.dragAndDrop": false, | |
"phpcbf.debug": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment