Last active
May 14, 2020 09:10
-
-
Save yyalim/d152a2c95ad3a36785aea0a616311686 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
This file contains 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":"2020-05-14T09:10:52.534Z","extensionVersion":"v3.4.3"} |
This file contains 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.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "4de763bd-505d-4978-9575-2b7696ecf94e", | |
"publisherId": "eamodio.gitlens", | |
"publisherDisplayName": "eamodio" | |
}, | |
"name": "gitlens", | |
"publisher": "eamodio", | |
"version": "10.2.1" | |
}, | |
{ | |
"metadata": { | |
"id": "3b1db1fc-c7f7-4bd6-9fa4-b499dfa99a8a", | |
"publisherId": "shd101wyy.markdown-preview-enhanced", | |
"publisherDisplayName": "shd101wyy" | |
}, | |
"name": "markdown-preview-enhanced", | |
"publisher": "shd101wyy", | |
"version": "0.5.3" | |
}, | |
{ | |
"metadata": { | |
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90", | |
"publisherId": "esbenp.prettier-vscode", | |
"publisherDisplayName": "esbenp" | |
}, | |
"name": "prettier-vscode", | |
"publisher": "esbenp", | |
"version": "4.7.0" | |
}, | |
{ | |
"metadata": { | |
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5", | |
"publisherId": "ms-python.python", | |
"publisherDisplayName": "ms-python" | |
}, | |
"name": "python", | |
"publisher": "ms-python", | |
"version": "2020.5.78807" | |
}, | |
{ | |
"metadata": { | |
"id": "9764fb1f-aa45-4e65-a18e-705b3b00761c", | |
"publisherId": "tinkertrain.theme-panda", | |
"publisherDisplayName": "tinkertrain" | |
}, | |
"name": "theme-panda", | |
"publisher": "tinkertrain", | |
"version": "1.3.0" | |
}, | |
{ | |
"metadata": { | |
"id": "6ad45f5a-09ec-44e5-b363-867ddc1ec674", | |
"publisherId": "shardulm94.trailing-spaces", | |
"publisherDisplayName": "shardulm94" | |
}, | |
"name": "trailing-spaces", | |
"publisher": "shardulm94", | |
"version": "0.3.1" | |
}, | |
{ | |
"metadata": { | |
"id": "d96e79c6-8b25-4be3-8545-0e0ecefcae03", | |
"publisherId": "vscodevim.vim", | |
"publisherDisplayName": "vscodevim" | |
}, | |
"name": "vim", | |
"publisher": "vscodevim", | |
"version": "1.14.2" | |
}, | |
{ | |
"metadata": { | |
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a", | |
"publisherId": "dbaeumer.vscode-eslint", | |
"publisherDisplayName": "dbaeumer" | |
}, | |
"name": "vscode-eslint", | |
"publisher": "dbaeumer", | |
"version": "2.1.5" | |
} | |
] |
This file contains 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 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 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": 14, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.renderWhitespace": "all", | |
"editor.detectIndentation": false, | |
"editor.renderIndentGuides": false, | |
"editor.lineNumbers": "relative", | |
"editor.renderLineHighlight": "all", | |
"editor.rulers": [ | |
100 | |
], | |
"editor.minimap.enabled": false, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"vue-html": "html" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
"xml": { | |
"attr_quotes": "single" | |
} | |
}, | |
"search.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"compiled": true, | |
"dist": true, | |
"dll": true, | |
"node_modules": true | |
}, | |
"files.exclude": { | |
".next/": true, | |
"settings.json": true, | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true | |
}, | |
// using cmder as terminal | |
// "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", | |
// "terminal.integrated.shellArgs.windows": [ | |
// "/k", "C:\\bin\\cmder\\vendor\\init.bat" | |
// ], | |
// Peacock | |
"peacock.favoriteColors": [ | |
{ | |
"name": "fc-fe-library", | |
"value": "#b52e31" | |
}, | |
{ | |
"name": "fc-fe-portal", | |
"value": "#eb5424" | |
}, | |
{ | |
"name": "fc-hmi-portal", | |
"value": "#007fff" | |
}, | |
{ | |
"name": "fc-socket-io-test-server", | |
"value": "#68217A" | |
}, | |
{ | |
"name": "fc-embeded-media-server", | |
"value": "#5dc9e2" | |
}, | |
{ | |
"name": "Java Blue-Gray", | |
"value": "#557c9b" | |
}, | |
{ | |
"name": "JavaScript Yellow", | |
"value": "#f9e64f" | |
}, | |
{ | |
"name": "Mandalorian Blue", | |
"value": "#1857a4" | |
}, | |
{ | |
"name": "Node Green", | |
"value": "#215732" | |
}, | |
{ | |
"name": "React Blue", | |
"value": "#00b3e6" | |
}, | |
{ | |
"name": "Something Different", | |
"value": "#832561" | |
}, | |
{ | |
"name": "Vue Green", | |
"value": "#42b883" | |
}, | |
{ | |
"name": "BMW Store", | |
"value": "#1857a4" | |
}, | |
{ | |
"name": "BMW Routes", | |
"value": "#215732" | |
}, | |
{ | |
"name": "CC Demo", | |
"value": "#55C1FF" | |
}, | |
{ | |
"name": "Petrofac CC", | |
"value": "#5887FF" | |
} | |
], | |
"peacock.affectActivityBar": true, | |
"peacock.affectStatusBar": false, | |
"peacock.affectTitleBar": true, | |
// vim settings | |
"vim.easymotion": true, | |
"vim.sneak": true, | |
"vim.incsearch": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.leader": "<space>", | |
"vim.insertModeKeyBindings": [ | |
], | |
"vim.normalModeKeyBindings": [ | |
{ | |
// paste from clipboard | |
// nmap <leader>p "+p | |
"before": ["<leader>", "p"], | |
"after": ["\"", "+", "p"] | |
}, | |
{ | |
// " yank into clipboard | |
// vmap <leader>y "+y | |
"before": ["<leader>", "y"], | |
"after": ["\"", "+", "y"] | |
} | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<C-j>"], | |
"after": ["<C-w>", "j"] | |
}, | |
{ | |
"before": ["<C-k>"], | |
"after": ["<C-w>", "k"] | |
}, | |
{ | |
"before": ["<C-h>"], | |
"after": ["<C-w>", "h"] | |
}, | |
{ | |
"before": ["<C-l>"], | |
"after": ["<C-w>", "l"] | |
}, | |
], | |
"vim.visualModeKeyBindings": [ | |
{ | |
// paste from clipboard | |
// nmap <leader>p "+p | |
"before": ["<leader>", "p"], | |
"after": ["\"", "+", "p"] | |
}, | |
{ | |
// " yank into clipboard | |
// vmap <leader>y "+y | |
"before": ["<leader>", "y"], | |
"after": ["\"", "+", "y"] | |
} | |
], | |
// javascript settings | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"diffEditor.ignoreTrimWhitespace": true, | |
"editor.suggestSelection": "first", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"workbench.tree.indent": 16, | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#8af4a3", | |
"list.activeSelectionForeground": "#F44336", | |
"list.inactiveSelectionForeground": "#F44336", | |
"list.highlightForeground": "#F44336", | |
"scrollbarSlider.activeBackground": "#F4433650", | |
"editorSuggestWidget.highlightForeground": "#F44336", | |
"textLink.foreground": "#F44336", | |
"progressBar.background": "#F44336", | |
"pickerGroup.foreground": "#F44336", | |
"tab.activeBorder": "#F44336", | |
"notificationLink.foreground": "#F44336", | |
"editorWidget.resizeBorder": "#F44336", | |
"editorWidget.border": "#F44336", | |
"settings.modifiedItemIndicator": "#F44336", | |
"settings.headerForeground": "#F44336", | |
"panelTitle.activeBorder": "#F44336", | |
"breadcrumb.activeSelectionForeground": "#F44336", | |
"menu.selectionForeground": "#F44336", | |
"menubar.selectionForeground": "#F44336", | |
"editor.findMatchBorder": "#F44336", | |
"selection.background": "#F4433640", | |
"activityBar.background": "#ef7853", | |
"activityBar.foreground": "#15202b", | |
"activityBar.inactiveForeground": "#15202b99", | |
"activityBarBadge.foreground": "#15202b", | |
"titleBar.activeBackground": "#eb5424", | |
"titleBar.inactiveBackground": "#eb542499", | |
"titleBar.activeForeground": "#e7e7e7", | |
"titleBar.inactiveForeground": "#e7e7e799", | |
"statusBar.background": "#1857a4", | |
"statusBar.border": "#fff", | |
"statusBar.foreground": "#fff" | |
}, | |
"materialTheme.accent": "Tomato", | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"editor.renderControlCharacters": false, | |
"sync.gist": "d152a2c95ad3a36785aea0a616311686", | |
"sync.forceUpload": true, | |
"terminal.integrated.rendererType": "dom", | |
"extensions.ignoreRecommendations": true, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"window.zoomLevel": 0, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment