Last active
December 9, 2019 16:26
-
-
Save hsnks100/ee2408868861fb5ddf778b0217120c4d to your computer and use it in GitHub Desktop.
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":"2019-12-09T16:25:02.052Z","extensionVersion":"v3.4.3"} |
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": "a16bd2f3-fa79-4780-8b54-80b126219c7d", | |
| "publisherId": "yopsolo.ActionScript3", | |
| "publisherDisplayName": "yopsolo" | |
| }, | |
| "name": "ActionScript3", | |
| "publisher": "yopsolo", | |
| "version": "0.0.1" | |
| }, | |
| { | |
| "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": "690b692e-e8a9-493f-b802-8089d50ac1b2", | |
| "publisherId": "ms-vscode.cpptools", | |
| "publisherDisplayName": "ms-vscode" | |
| }, | |
| "name": "cpptools", | |
| "publisher": "ms-vscode", | |
| "version": "0.26.2" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "f0c5397b-d357-4197-99f0-cb4202f22818", | |
| "publisherId": "ms-vscode-remote.remote-wsl", | |
| "publisherDisplayName": "ms-vscode-remote" | |
| }, | |
| "name": "remote-wsl", | |
| "publisher": "ms-vscode-remote", | |
| "version": "0.40.3" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "d96e79c6-8b25-4be3-8545-0e0ecefcae03", | |
| "publisherId": "vscodevim.vim", | |
| "publisherDisplayName": "vscodevim" | |
| }, | |
| "name": "vim", | |
| "publisher": "vscodevim", | |
| "version": "1.12.0" | |
| } | |
| ] |
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 override the defaultsauto[] | |
| [ | |
| { | |
| "key": "ctrl+p", | |
| "command": "workbench.action.quickOpenNavigatePreviousInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "ctrl+shift+p", | |
| "command": "-workbench.action.quickOpenNavigatePreviousInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "ctrl+n", | |
| "command": "workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "ctrl+p", | |
| "command": "-workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| } | |
| ] |
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
| { | |
| "sync.gist": "ee2408868861fb5ddf778b0217120c4d", | |
| "sync.autoDownload": false, | |
| "sync.autoUpload": true, | |
| "sync.forceDownload": false, | |
| "sync.forceUpload": false, | |
| "sync.quietSync": false, | |
| "sync.removeExtensions": true, | |
| "sync.syncExtensions": true, | |
| "vim.easymotion": true, | |
| "vim.enableNeovim": true, | |
| "vim.neovimPath": "c:\\Users\\dire\\Downloads\\Neovim\\bin\\nvim.exe", | |
| "vim.sneak": true, | |
| "vim.incsearch": true, | |
| "vim.useSystemClipboard": true, | |
| "vim.useCtrlKeys": true, | |
| "vim.hlsearch": true, | |
| "vim.insertModeKeyBindings": [ | |
| { | |
| "before": [ | |
| "j", | |
| "j" | |
| ], | |
| "after": [ | |
| "<Esc>" | |
| ] | |
| } | |
| ], | |
| "vim.normalModeKeyBindingsNonRecursive": [ | |
| { | |
| "before": [ | |
| "]" | |
| ], | |
| "after": [ | |
| "<c-d>" | |
| ], | |
| }, | |
| { | |
| "before": [ | |
| "[" | |
| ], | |
| "after": [ | |
| "<c-u>" | |
| ], | |
| }, | |
| // { | |
| // "before": ["s"], | |
| // "after": ["x", "a"], | |
| // }, | |
| { | |
| "before": [ | |
| "<C-h>" | |
| ], | |
| "after": [ | |
| "<c-w>", | |
| "h" | |
| ] | |
| }, | |
| { | |
| "before": [ | |
| "<C-j>" | |
| ], | |
| "after": [ | |
| "<c-w>", | |
| "j" | |
| ] | |
| }, | |
| { | |
| "before": [ | |
| "<C-k>" | |
| ], | |
| "after": [ | |
| "<c-w>", | |
| "k" | |
| ] | |
| }, | |
| { | |
| "before": [ | |
| "<leader>", | |
| "w" | |
| ], | |
| "commands": [ | |
| "workbench.action.quickOpen" | |
| ] | |
| }, | |
| { | |
| "before": [ | |
| "<C-n>" | |
| ], | |
| "commands": [ | |
| ":nohl" | |
| ] | |
| } | |
| ], | |
| "vim.leader": ",", | |
| "vim.handleKeys": { | |
| "<C-a>": false, | |
| "<C-f>": false | |
| }, | |
| "window.zoomLevel": 1, | |
| "editor.fontFamily": "나눔고딕코딩, Consolas, 'Courier New', monospace", | |
| "editor.fontSize": 16, | |
| "editor.fontWeight": "bold" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment