Last active
November 16, 2017 07:55
-
-
Save notrealdev/840d462e7b07a5433acb0e1162dafc21 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":"2017-11-16T07:55:16.681Z","extensionVersion":"v2.8.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
[ | |
{ | |
"metadata": { | |
"id": "697255a9-3f36-44c8-b084-d3b91edfb23a", | |
"publisherId": "901b401e-7657-4a33-8c9a-0854c569607e", | |
"publisherDisplayName": "HookyQR" | |
}, | |
"name": "beautify", | |
"publisher": "HookyQR", | |
"version": "1.1.1" | |
}, | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "ac3a3342-db76-40ef-9277-4657632d3bfe", | |
"publisherDisplayName": "Shan Khan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "2.8.5" | |
}, | |
{ | |
"metadata": { | |
"id": "65c48706-0307-4a62-b6f5-e52e69f9a7ec", | |
"publisherId": "edf8e3bf-6628-4351-8730-aef2f07d4805", | |
"publisherDisplayName": "Łukasz Wroński" | |
}, | |
"name": "ftp-sync", | |
"publisher": "lukasz-wronski", | |
"version": "0.3.3" | |
}, | |
{ | |
"metadata": { | |
"id": "9b2c953d-6ad4-46d1-b18e-7e5992d1d8a6", | |
"publisherId": "1a680e61-b64e-4eff-bbbb-2085b0618f52", | |
"publisherDisplayName": "Mahmoud Ali" | |
}, | |
"name": "vscode-theme-onedark", | |
"publisher": "akamud", | |
"version": "2.1.0" | |
}, | |
{ | |
"metadata": { | |
"publisherId": "tungvn.wordpress-snippet", | |
"publisherDisplayName": "tungvn" | |
}, | |
"name": "wordpress-snippet", | |
"publisher": "tungvn", | |
"version": "1.1.2" | |
} | |
] |
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+shift+/", | |
"command": "editor.action.blockComment", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+1", | |
"command": "editor.foldAll", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+2", | |
"command": "editor.foldLevel2", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+3", | |
"command": "editor.foldLevel3", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+4", | |
"command": "editor.foldLevel4", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+5", | |
"command": "editor.foldLevel5", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+6", | |
"command": "editor.foldLevel6", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+7", | |
"command": "editor.foldLevel7", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+8", | |
"command": "editor.foldLevel8", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+9", | |
"command": "editor.foldLevel9", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+0", | |
"command": "editor.unfoldAll", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "f12", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "-workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "f3", | |
"command": "filesExplorer.findInFolder" | |
}, | |
/*ftp sync current file*/ | |
{ | |
"key": "alt+u", | |
"command": "extension.ftpsyncsingle", | |
"when": "editorTextFocus" | |
} | |
] |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/node_modules": true, | |
"**/*.cache": true, | |
"**/*.log": true, | |
"package-lock.json": true | |
}, | |
"search.useIgnoreFilesByDefault": true, | |
"editor.renderIndentGuides": true, | |
"editor.minimap.enabled": true, | |
"editor.minimap.renderCharacters": false, | |
"editor.minimap.maxColumn": 120, | |
"window.title": "${activeEditorLong}", | |
"editor.wrappingIndent": "indent", | |
"editor.quickSuggestions": false, | |
"editor.quickSuggestionsDelay": 0, | |
"editor.tabCompletion": true, | |
"editor.wordWrap": "on", | |
"workbench.statusBar.visible": true, | |
"less.validate": false, | |
"css.validate": false, | |
"editor.selectionHighlight": false, | |
"editor.renderLineHighlight": "none", | |
"workbench.activityBar.visible": true, | |
"php.validate.executablePath": "D:/Code/Setup/Ampps/php-7.1/php.exe", | |
"window.zoomLevel": 1, | |
"editor.hover": false, | |
"sync.gist": "840d462e7b07a5433acb0e1162dafc21", | |
"sync.lastUpload": "2017-06-19T07:14:55.958Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"editor.showFoldingControls": "always", | |
"workbench.iconTheme": "vs-minimal", | |
"editor.lineHeight": 24, | |
"workbench.colorTheme": "Atom One Dark", | |
"workbench.startupEditor": "newUntitledFile", | |
"typescript.check.npmIsInstalled": false, | |
"workbench.colorCustomizations": { | |
/* activity bar */ | |
"activityBar.foreground": "#5c6164", | |
"activityBar.background": "#171e22", | |
"activityBarBadge.background": "#5c6164", | |
/* sidebar */ | |
"sideBar.background": "#171e22", | |
/* editor */ | |
"editor.background": "#263238", | |
/* statusbar */ | |
"statusBar.background": "#13191c", | |
/* section highlight when double click #00000050 */ | |
"editor.selectionBackground": "#00000050", | |
/* remove highlight when cursor focus */ | |
"editor.wordHighlightBackground": "#0000", | |
/* cursor */ | |
"editorCursor.foreground": "#f2c203" | |
}, | |
"editor.tokenColorCustomizations": { | |
/* comment */ | |
"comments": "#C2EB96" | |
} | |
} |
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
{ | |
"token": "", | |
"id": "840d462e7b07a5433acb0e1162dafc21" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment