Created
November 1, 2022 16:48
-
-
Save vineckb/26bdf409562ca7b1dcc9cd4ad2ec9495 to your computer and use it in GitHub Desktop.
nois.md
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
| ```` | |
| { | |
| "explorer.confirmDelete": false, | |
| "emmet.triggerExpansionOnTab": true, | |
| "editor.tabSize": 2, | |
| "files.trimTrailingWhitespace": true, | |
| "[php]": { | |
| "editor.tabSize": 4 | |
| }, | |
| "[html]": { | |
| "editor.tabSize": 4 | |
| }, | |
| "files.insertFinalNewline": true, | |
| "editor.suggestSelection": "first", | |
| "workbench.editor.labelFormat": "short", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "git.autofetch": true, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.formatOnSave": true, | |
| "sync.autoDownload": false, | |
| "sync.autoUpload": true, | |
| "sync.forceUpload": false, | |
| "sync.gist": "a36d4fa7717223d3c4f595f5c3368bb5", | |
| "sync.quietSync": true, | |
| "sync.removeExtensions": false, | |
| "terminal.integrated.defaultProfile.windows": "Git Bash", | |
| "git.confirmSync": false, | |
| "terminal.integrated.enableMultiLinePasteWarning": false, | |
| "yaml.schemas": { | |
| "file:///c%3A/Users/vinec/.vscode/extensions/atlassian.atlascode-2.10.12/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
| }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "[xml]": { | |
| "editor.defaultFormatter": "redhat.vscode-xml" | |
| }, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "window.zoomLevel": 2, | |
| "[dart]": { | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.rulers": [80], | |
| "editor.selectionHighlight": false, | |
| "editor.suggest.snippetsPreventQuickSuggestions": false, | |
| "editor.suggestSelection": "first", | |
| "editor.tabCompletion": "onlySnippets", | |
| "editor.wordBasedSuggestions": false | |
| } | |
| } | |
| ```` | |
| ```` | |
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "key": "ctrl+tab", | |
| "command": "workbench.action.nextEditor" | |
| }, | |
| { | |
| "key": "ctrl+shift+tab", | |
| "command": "workbench.action.previousEditor" | |
| }, | |
| { | |
| "key": "ctrl+shift+d", | |
| "command": "editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+d", | |
| "command": "editor.action.addSelectionToNextFindMatch", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+up", | |
| "command": "editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+'", | |
| "command": "workbench.action.terminal.toggleTerminal", | |
| "when": "terminal.active" | |
| }, | |
| { | |
| "key": "ctrl+shift+[BracketLeft]", | |
| "command": "-workbench.action.terminal.toggleTerminal", | |
| "when": "terminal.active" | |
| }, | |
| { | |
| "key": "ctrl+k", | |
| "command": "workbench.action.files.saveWithoutFormatting" | |
| }, | |
| { | |
| "key": "ctrl+k s", | |
| "command": "-workbench.action.files.saveWithoutFormatting" | |
| } | |
| ] | |
| ```` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment