Created
February 7, 2019 07:50
-
-
Save leafiy/410eec187bafc0c9c1d9eeffe544f459 to your computer and use it in GitHub Desktop.
vscode_syncing
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
| [ | |
| { | |
| "id": "AdamCaviness.theme-monokai-dark-soda", | |
| "name": "theme-monokai-dark-soda", | |
| "publisher": "AdamCaviness", | |
| "version": "0.0.5" | |
| }, | |
| { | |
| "id": "dbaeumer.vscode-eslint", | |
| "name": "vscode-eslint", | |
| "publisher": "dbaeumer", | |
| "version": "1.8.0" | |
| }, | |
| { | |
| "id": "dracula-theme.theme-dracula", | |
| "name": "theme-dracula", | |
| "publisher": "dracula-theme", | |
| "version": "2.16.0" | |
| }, | |
| { | |
| "id": "eamodio.gitlens", | |
| "name": "gitlens", | |
| "publisher": "eamodio", | |
| "version": "9.5.0" | |
| }, | |
| { | |
| "id": "Equinusocio.vsc-material-theme", | |
| "name": "vsc-material-theme", | |
| "publisher": "Equinusocio", | |
| "version": "2.6.3" | |
| }, | |
| { | |
| "id": "formulahendry.auto-close-tag", | |
| "name": "auto-close-tag", | |
| "publisher": "formulahendry", | |
| "version": "0.5.6" | |
| }, | |
| { | |
| "id": "formulahendry.auto-rename-tag", | |
| "name": "auto-rename-tag", | |
| "publisher": "formulahendry", | |
| "version": "0.0.15" | |
| }, | |
| { | |
| "id": "MS-CEINTL.vscode-language-pack-zh-hans", | |
| "name": "vscode-language-pack-zh-hans", | |
| "publisher": "MS-CEINTL", | |
| "version": "1.31.4" | |
| }, | |
| { | |
| "id": "ms-python.python", | |
| "name": "python", | |
| "publisher": "ms-python", | |
| "version": "2019.1.0" | |
| }, | |
| { | |
| "id": "ms-vscode.vscode-typescript-tslint-plugin", | |
| "name": "vscode-typescript-tslint-plugin", | |
| "publisher": "ms-vscode", | |
| "version": "0.4.1" | |
| }, | |
| { | |
| "id": "nonoroazoro.syncing", | |
| "name": "syncing", | |
| "publisher": "nonoroazoro", | |
| "version": "2.1.0" | |
| }, | |
| { | |
| "id": "octref.vetur", | |
| "name": "vetur", | |
| "publisher": "octref", | |
| "version": "0.14.5" | |
| }, | |
| { | |
| "id": "PeterJausovec.vscode-docker", | |
| "name": "vscode-docker", | |
| "publisher": "PeterJausovec", | |
| "version": "0.5.2" | |
| }, | |
| { | |
| "id": "teabyii.ayu", | |
| "name": "ayu", | |
| "publisher": "teabyii", | |
| "version": "0.18.0" | |
| }, | |
| { | |
| "id": "wayou.vscode-todo-highlight", | |
| "name": "vscode-todo-highlight", | |
| "publisher": "wayou", | |
| "version": "1.0.4" | |
| }, | |
| { | |
| "id": "zhuangtongfa.Material-theme", | |
| "name": "Material-theme", | |
| "publisher": "zhuangtongfa", | |
| "version": "2.18.1" | |
| } | |
| ] |
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.find.autoFindInSelection": true, | |
| "editor.showFoldingControls": "always", | |
| // Controls the line height. Use 0 to compute the lineHeight from the fontSize. | |
| "editor.lineHeight": 18, | |
| // Enables font ligatures | |
| "editor.fontLigatures": true, | |
| // Controls if file decorations should use badges. | |
| "explorer.decorations.badges": false, | |
| "editor.fontSize": 12, | |
| "editor.tabSize": 1, | |
| "editor.trimAutoWhitespace": true, | |
| "files.trimTrailingWhitespace": true, | |
| "editor.formatOnPaste": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", | |
| "workbench.colorTheme": "Dracula", | |
| "window.zoomLevel": 1.3, | |
| "workbench.iconTheme": "eq-material-theme-icons-darker", | |
| "editor.minimap.enabled": false, | |
| "editor.fontWeight": "400", | |
| "editor.fontFamily": "Roboto Mono" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment