Last active
January 3, 2019 00:34
-
-
Save daudahmad/e7f45341f54e4216ef9a5f1e4c0a7c1c to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
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
{"lastUpload":"2018-12-19T02:29:36.253Z","extensionVersion":"v3.2.4"} |
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
[ | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.2.4" | |
}, | |
{ | |
"metadata": { | |
"id": "5960f38e-0bbe-4644-8f9c-9c8824e82511", | |
"publisherId": "donjayamanne.githistory", | |
"publisherDisplayName": "donjayamanne" | |
}, | |
"name": "githistory", | |
"publisher": "donjayamanne", | |
"version": "0.4.4" | |
}, | |
{ | |
"metadata": { | |
"id": "d4e2a48f-0b88-4540-92c5-a4ab4dd2c813", | |
"publisherId": "liviuschera.noctis", | |
"publisherDisplayName": "liviuschera" | |
}, | |
"name": "noctis", | |
"publisher": "liviuschera", | |
"version": "4.16.0" | |
}, | |
{ | |
"metadata": { | |
"id": "d96e79c6-8b25-4be3-8545-0e0ecefcae03", | |
"publisherId": "vscodevim.vim", | |
"publisherDisplayName": "vscodevim" | |
}, | |
"name": "vim", | |
"publisher": "vscodevim", | |
"version": "0.16.14" | |
}, | |
{ | |
"metadata": { | |
"id": "0479fc1c-3d67-49f9-b087-fb9069afe48f", | |
"publisherId": "PeterJausovec.vscode-docker", | |
"publisherDisplayName": "PeterJausovec" | |
}, | |
"name": "vscode-docker", | |
"publisher": "PeterJausovec", | |
"version": "0.4.0" | |
}, | |
{ | |
"metadata": { | |
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a", | |
"publisherId": "dbaeumer.vscode-eslint", | |
"publisherDisplayName": "dbaeumer" | |
}, | |
"name": "vscode-eslint", | |
"publisher": "dbaeumer", | |
"version": "1.7.2" | |
} | |
] |
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
// Empty |
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
// Empty |
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
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 15, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": [ | |
"j", | |
"j" | |
], | |
"after": [ | |
"<Esc>" | |
] | |
} | |
], | |
"editor.minimap.enabled": false, | |
"files.exclude": { | |
"node_modules/": true, | |
"npm-packages-offline-cache/": true, | |
"reports/": true, | |
"selenium-drivers/": true | |
}, | |
"workbench.colorTheme": "Noctis Obscuro", | |
"editor.fontFamily": "Hasklig, Menlo, Monaco, 'Courier New', monospace", | |
"search.exclude": { | |
"**/node_modules": true, | |
"/node_modules": true, | |
"**/bower_components": true, | |
"**/node_modules/*": true, | |
"**/config": true, | |
"**/config/*": true, | |
"**/build": true, | |
"**/build/*": true, | |
"**/ci-scripts": true | |
}, | |
"editor.tabSize": 2, | |
"editor.detectIndentation": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"sync.gist": "e7f45341f54e4216ef9a5f1e4c0a7c1c" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment