Created
February 2, 2018 14:59
-
-
Save tommymarshall/557c41575457d580c772b932d8e11591 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
{ | |
"workbench.colorTheme": "One Monokai", | |
"editor.lineHeight": 24, | |
"editor.fontSize": 14, | |
"files.autoSave": "onFocusChange", | |
"workbench.editor.labelFormat": "default", | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.fontFamily": "Fira Code", | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": true, | |
"workbench.panel.location": "right", | |
"window.zoomLevel": 0, | |
"files.associations": { | |
"*.graphqls": "graphql" | |
}, | |
"editor.smoothScrolling": true, | |
"editor.renderWhitespace": "all", | |
"workbench.tips.enabled": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"auto-close-tag.SublimeText3Mode": true, | |
"emmet.includeLanguages": { | |
"blade": "html" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"editor.fontLigatures": true, | |
"explorer.confirmDelete": false, | |
"eslint.autoFixOnSave": true, | |
"php.suggest.basic": false, | |
"php.executablePath": "/usr/local/bin/php" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment