-
-
Save MrMovl/55720940d5547c34ba08 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
[ | |
{ | |
"name": "elm-format", | |
"publisher": "abadi199", | |
"version": "0.1.0", | |
"id": "abadi199.elm-format", | |
"__metadata": { | |
"id": "2f9cd7df-b77a-4f3c-bed9-560f68ceedb9", | |
"publisherId": "476ad3df-9082-42db-b104-097f9c37d738", | |
"publisherDisplayName": "abadi199" | |
} | |
}, | |
{ | |
"name": "vscode-custom-css", | |
"publisher": "be5invis", | |
"version": "2.5.0", | |
"id": "be5invis.vscode-custom-css", | |
"__metadata": { | |
"id": "1b160753-ae5e-42bb-82ad-d115ce5c10f4", | |
"publisherId": "8c148d69-cbc6-480b-bd8b-a42715926324", | |
"publisherDisplayName": "be5invis" | |
} | |
}, | |
{ | |
"name": "json-tools", | |
"publisher": "eriklynd", | |
"version": "1.0.2", | |
"id": "eriklynd.json-tools", | |
"__metadata": { | |
"id": "236ff452-49f5-47a4-8928-ab18f5b9c7bf", | |
"publisherId": "69db6a52-153a-4a83-8e85-86a114b738ef", | |
"publisherDisplayName": "Erik Lynd" | |
} | |
}, | |
{ | |
"name": "syncing", | |
"publisher": "nonoroazoro", | |
"version": "1.4.9", | |
"id": "nonoroazoro.syncing", | |
"__metadata": { | |
"id": "e7db78ad-ac9f-4919-99bb-3627e07b6d1f", | |
"publisherId": "f6d9d666-6595-44fa-89fc-36a0c3e0c1fa", | |
"publisherDisplayName": "nonoroazoro" | |
} | |
}, | |
{ | |
"name": "elm", | |
"publisher": "sbrink", | |
"version": "0.15.1", | |
"id": "sbrink.elm", | |
"__metadata": { | |
"id": "976eb754-5cd2-4716-82fc-90f201c9ca9d", | |
"publisherId": "c275679e-b425-4b9b-b104-4834a6b840ad", | |
"publisherDisplayName": "Elm" | |
} | |
} | |
] |
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
// Platzieren Sie Ihre Tastenzuordnungen in dieser Datei, um die Standardwerte zu überschreiben. | |
[{ | |
"key": "ctrl+shift+numpad_add", | |
"command": "editor.unfold", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+numpad_subtract", | |
"command": "editor.fold", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+alt+numpad_add", | |
"command": "editor.unfoldAll", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+alt+numpad_subtract", | |
"command": "editor.foldAll", | |
"when": "editorTextFocus" | |
}, | |
{ "key": "ctrl+y", | |
"command": "editor.action.deleteLines", | |
"when": "editorTextFocus && !editorReadonly" }, | |
{ "key": "ctrl+shift+d", | |
"command": "editor.action.copyLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" } | |
] |
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
// Platzieren Sie Ihre Einstellungen in dieser Datei, um die Standardeinstellungen zu überschreiben. | |
{ | |
"window.reopenFolders": "all", | |
"window.restoreFullscreen": true, | |
"window.zoomLevel": 1, | |
"editor.fontSize": 15, | |
"editor.cursorBlinking": "phase", | |
"editor.cursorStyle": "block", | |
"files.autoSave": "onFocusChange", | |
"explorer.openEditors.visible": 0, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"typescript.useCodeSnippetsOnMethodSuggest": true, | |
"extensions.autoUpdate": false, | |
"elm.formatOnSave": true, | |
"editor.formatOnSave": false, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.wordWrapColumn": 80, | |
"editor.wrappingIndent": "indent", | |
"typescript.tsdk": "C:/Users/Tomke/AppData/Roaming/npm/node_modules/typescript/lib/", | |
"workbench.welcome.enabled": false, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment