Last active
October 14, 2019 15:26
-
-
Save Hasnayeen/fa876e59da434d26e9361c67ab484738 to your computer and use it in GitHub Desktop.
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
{ | |
"telemetry.enableTelemetry": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.activityBar.visible": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"workbench.statusBar.visible": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabCompletion": "on", | |
"explorer.openEditors.visible": 0, | |
"editor.fontFamily": "'Fira Code iScript', 'Fira Code', 'Operator Mono', 'Monospace'", | |
"editor.fontSize": 16, | |
"editor.fontLigatures": true, | |
"editor.fontWeight": "bold", | |
"editor.minimap.enabled": false, | |
"editor.lineHeight": 34, | |
"php-cs-fixer.config": "/home/user/.vscode/.php_cs", | |
"importCost.typescriptExtensions": [ | |
"\\.vue?$" | |
], | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"vue", | |
"vue-html", | |
"html" | |
], | |
"vetur.validation.template": false, | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"php.suggest.basic": false, | |
"php.validate.executablePath": "/home/hasnayeen/.vscode/php7wrapper.sh", | |
"php.executablePath": "/home/hasnayeen/.vscode/php7wrapper.sh", | |
"window.zoomLevel": 0, | |
"editor.quickSuggestionsDelay": 1, | |
"workbench.sideBar.location": "right", | |
"editor.tokenColorCustomizations": { | |
"functions": "#A779E9", | |
"types": "#3490DC", | |
"textMateRules": [ | |
{ | |
"scope": "entity.name.function", | |
"settings": { | |
"foreground": "#F66D9B", | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": "meta.function.parameter.typehinted.php storage.type", | |
"settings": { | |
"foreground": "#166D9B", | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": "meta.function.parameters.php variable.other", | |
"settings": { | |
"foreground": "#E99144", | |
"fontStyle": "italic bold" | |
} | |
} | |
] | |
}, | |
// "go.gopath": "/home/user/projects/go/", | |
// "go.docsTool": "gogetdoc", | |
"eslint.options": { | |
"extensions": [ | |
".js", | |
".vue" | |
] | |
}, | |
"editor.wordWrap": "on", | |
"workbench.colorCustomizations": {}, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": true, | |
"strings": true | |
}, | |
"javascript.validate.enable": false, | |
"standard.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ | |
"language": "html", | |
"autoFix": true | |
}, | |
{ | |
"language": "vue", | |
"autoFix": true | |
} | |
], | |
"standard.options": { | |
"plugins": [ | |
"html", | |
"vue" | |
] | |
}, | |
"files.associations": { | |
"*.vue": "vue", | |
".php_cs": "php" | |
}, | |
"[vue]": {}, | |
"files.autoSave": "off", | |
"terminal.integrated.rendererType": "dom", | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"php-cs-fixer.autoFixBySemicolon": true, | |
"files.exclude": { | |
"**/.phpintel": true, | |
"**/.vscode": true | |
}, | |
"update.mode": "none", | |
"workbench.editor.highlightModifiedTabs": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"[php]": { | |
"editor.defaultFormatter": "junstyle.php-cs-fixer" | |
}, | |
"tailwindCSS.emmetCompletions": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"vue-html": "html", | |
"razor": "html", | |
"plaintext": "jade" | |
}, | |
"editor.formatOnType": true, | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"workbench.colorTheme": "Peacocks In Space Contrast (rainglow)", | |
"php-cs-fixer.executablePath": "/home/hasnayeen/.vscode/extensions/junstyle.php-cs-fixer-0.1.123/php-cs-fixer.phar", | |
"php-cs-fixer.lastDownload": 1569231774474, | |
"dart.allowAnalytics": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment