Created
May 29, 2019 07:43
-
-
Save michaeljymsgutierrez/c267ea54b6efb3f01233c1d0b3f70129 to your computer and use it in GitHub Desktop.
VS Code Settings.json
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": 12, | |
| "editor.minimap.enabled": false, | |
| "editor.detectIndentation": false, | |
| "workbench.sideBar.location": "right", | |
| "files.associations": { | |
| "*.inc": "php", | |
| "*.vue": "html", | |
| "*.cgf": "shellscript" | |
| }, | |
| "extensions.ignoreRecommendations": false, | |
| "window.zoomLevel": 1, | |
| "editor.tabSize": 2, | |
| "workbench.iconTheme": "simple-icons", | |
| "workbench.colorTheme": "Monokai", | |
| "explorer.confirmDelete": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "explorer.confirmDragAndDrop": false, | |
| "prettier.useTabs": true, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/node_modules/**": true, | |
| "**/tmp/**": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment