Skip to content

Instantly share code, notes, and snippets.

@johncaruso
Last active February 16, 2020 17:25
Show Gist options
  • Select an option

  • Save johncaruso/ffde7f3d2e0a6b156f8552335d6e27e0 to your computer and use it in GitHub Desktop.

Select an option

Save johncaruso/ffde7f3d2e0a6b156f8552335d6e27e0 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-09-27T17:19:50.986Z","extensionVersion":"v3.4.3"}
[
{
"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": "74f34f8a-245e-4133-8617-a3a94b5a417e",
"publisherId": "cmstead.jsrefactor",
"publisherDisplayName": "cmstead"
},
"name": "jsrefactor",
"publisher": "cmstead",
"version": "2.20.4"
},
{
"metadata": {
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "esbenp.prettier-vscode",
"publisherDisplayName": "esbenp"
},
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "2.3.0"
},
{
"metadata": {
"id": "aae0701b-111f-49c1-9000-abd37a442f28",
"publisherId": "WallabyJs.quokka-vscode",
"publisherDisplayName": "WallabyJs"
},
"name": "quokka-vscode",
"publisher": "WallabyJs",
"version": "1.0.253"
},
{
"metadata": {
"id": "76fa4fbd-b168-488b-a60a-2ee3134f2748",
"publisherId": "anerrantprogrammer.servicenow-sync",
"publisherDisplayName": "anerrantprogrammer"
},
"name": "servicenow-sync",
"publisher": "anerrantprogrammer",
"version": "0.2.3"
},
{
"metadata": {
"id": "6766254a-8e43-4ebc-9b89-e5be39cb5318",
"publisherId": "WallabyJs.wallaby-vscode",
"publisherDisplayName": "WallabyJs"
},
"name": "wallaby-vscode",
"publisher": "WallabyJs",
"version": "1.0.144"
},
{
"metadata": {
"id": "809737b6-adaf-4aa9-8b30-14f6a3c9175b",
"publisherId": "ukoloff.win-ca",
"publisherDisplayName": "ukoloff"
},
"name": "win-ca",
"publisher": "ukoloff",
"version": "3.1.0"
}
]
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+j j",
"command": "editor.action.joinLines"
},
{
"key": "ctrl+k '",
"command": "esQuotes.transformBetweenSingleDoubleQuotes"
},
{
"key": "ctrl+k v",
"command": "-quokka.showValue",
"when": "!quokka.isLiveShareClient && !terminalFocus"
},
{
"key": "ctrl+enter",
"command": "sn_sync.evalScript",
"when": "editorTextFocus"
}
]
{
"terminal.integrated.shell.windows": "C:\\Users\\jcaruso\\AppData\\Local\\Programs\\Git\\bin\\bash.exe",
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": true,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.rulers": [
120
],
"editor.tabCompletion": "on",
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": false,
"files.autoSave": "off",
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"http.proxySupport": "off",
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.printWidth": 120,
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
"prettier.disableLanguages": [
"vue",
"markdown"
],
"window.newWindowDimensions": "maximized",
"window.zoomLevel": 0,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"sync.gist": ""
}
{
// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
},
"For Loop": {
"prefix": "for",
"body": [
"for (var ${1:i} = 0; ${1:i} < ${2:len}; ${1:i}++) {",
"\t$0",
"}"
],
"description": "For Loop"
},
"IIFE": {
"prefix": "iife",
"body": [
"(function() {",
"\t$0",
"})();"
],
"description": "Immediately Invoked Functional Expression"
},
"GlideRecord Query": {
"prefix": "gr",
"body": [
"var gr = new GlideRecord('$1');",
"gr.addQuery('$2');",
"gr.query();",
"while (gr.next()) {",
"\t$0",
"}"
],
"description": "GlideRecord query and loop results"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment