Created
June 3, 2017 20:54
-
-
Save hugot/a62aeb2474fcf0d9d6abbdb69dce653e 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":"2017-06-03T20:54:54.028Z","extensionVersion":"v2.8.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
[ | |
{ | |
"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.1" | |
}, | |
{ | |
"metadata": { | |
"id": "198a707e-28af-4e84-8610-6e2f628dd12d", | |
"publisherId": "eed56242-9699-4317-8bc7-e9f4b9bdd3ff", | |
"publisherDisplayName": "Red Hat" | |
}, | |
"name": "java", | |
"publisher": "redhat", | |
"version": "0.5.0" | |
}, | |
{ | |
"metadata": { | |
"id": "d96e79c6-8b25-4be3-8545-0e0ecefcae03", | |
"publisherId": "5d63889b-1b67-4b1f-8350-4f1dce041a26", | |
"publisherDisplayName": "vscodevim" | |
}, | |
"name": "vim", | |
"publisher": "vscodevim", | |
"version": "0.8.4" | |
}, | |
{ | |
"metadata": { | |
"id": "c9c26801-8ea7-4dcc-887c-1d683494ff09", | |
"publisherId": "ae78365b-ae28-422d-b5eb-d5f110ae64f0", | |
"publisherDisplayName": "Patrik Thorsson" | |
}, | |
"name": "vscode-jsp", | |
"publisher": "pthorsson", | |
"version": "0.0.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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{"key": "capslock", "command": "extension.vim_escape", | |
"when": "editorTextFocus && vim.active && !inDebugRepl" } | |
] |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontSize": 13, | |
//Vim settings | |
"vim.incsearch": true, | |
"vim.ignorecase": true, | |
"vim.autoindent": true, | |
"vim.smartcase": true, | |
"vim.useSystemClipboard": true, | |
"vim.hlsearch": true, | |
"vim.disableAnnoyingGcMessage": true, | |
"vim.disableAnnoyingNeovimMessage": true, | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": [ ";" ], | |
"after": [ ":" ] | |
} | |
], | |
"sync.gist": "", | |
"sync.lastUpload": "", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment