Created
November 1, 2024 19:36
-
-
Save Hogeyama/1db3de4b87618c96f8a8753bc1eddb51 to your computer and use it in GitHub Desktop.
VSCode
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+n", | |
| "command": "workbench.action.files.save" | |
| }, | |
| { | |
| "key": "ctrl+s", | |
| "command": "-workbench.action.files.save" | |
| }, | |
| { | |
| "key": "ctrl+right", | |
| "command": "github.copilot.acceptCursorPanelSolution", | |
| "when": "github.copilot.activated && github.copilot.panelVisible" | |
| }, | |
| { | |
| "key": "ctrl+/", | |
| "command": "-github.copilot.acceptCursorPanelSolution", | |
| "when": "github.copilot.activated && github.copilot.panelVisible" | |
| }, | |
| { | |
| "key": "f6", | |
| "command": "workbench.action.terminal.toggleTerminal", | |
| "when": "terminal.active" | |
| }, | |
| { | |
| "key": "ctrl+shift+[BracketLeft]", | |
| "command": "-workbench.action.terminal.toggleTerminal", | |
| "when": "terminal.active" | |
| }, | |
| { | |
| "key": "ctrl+l l", | |
| "command": "codelens.showLensesInCurrentLine" | |
| }, | |
| { | |
| "key": "ctrl+h", | |
| "command": "editor.debug.action.showDebugHover", | |
| "when": "editorTextFocus && inDebugMode" | |
| }, | |
| { | |
| "key": "ctrl+k ctrl+i", | |
| "command": "-editor.debug.action.showDebugHover", | |
| "when": "editorTextFocus && inDebugMode" | |
| }, | |
| { | |
| "key": "ctrl+k ctrl+j", | |
| "command": "editor.action.revealDefinition", | |
| "when": "editorHasDefinitionProvider && editorTextFocus" | |
| }, | |
| { | |
| "key": "f12", | |
| "command": "-editor.action.revealDefinition", | |
| "when": "editorHasDefinitionProvider && editorTextFocus" | |
| } | |
| ] |
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
| { | |
| "extensions.experimental.affinity": { | |
| "asvetliakov.vscode-neovim": 1 | |
| }, | |
| "editor.fontFamily": "'UDEV Gothic NFLG'", | |
| "scm.inputFontSize": 14, | |
| "notebook.markup.fontSize": 14, | |
| "editor.lineHeight": 18, | |
| "window.zoomLevel": 3, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "plaintext": false, | |
| "markdown": false, | |
| "scminput": false, | |
| "typescript": true | |
| }, | |
| "editor.fontSize": 16, | |
| "terminal.integrated.lineHeight": 1.2, | |
| "git.openRepositoryInParentFolders": "always", | |
| "workbench.startupEditor": "none", | |
| "haskell.manageHLS": "PATH", | |
| "haskell.formattingProvider": "fourmolu", | |
| "haskell.plugin.eval.config.exception": true, | |
| "haskell.plugin.fourmolu.config.external": true, | |
| "editor.formatOnSave": true, | |
| "files.insertFinalNewline": true, | |
| "editor.renderFinalNewline": "off", | |
| "gitlens.currentLine.pullRequests.enabled": false, | |
| "gitlens.currentLine.enabled": false, | |
| "editor.occurrencesHighlight": "off", | |
| "editor.minimap.enabled": false, | |
| "gitlens.blame.heatmap.enabled": false, | |
| "gitlens.blame.avatars": false, | |
| "gitlens.statusBar.enabled": false, | |
| "diffEditor.ignoreTrimWhitespace": true, | |
| "gitlens.hovers.annotations.enabled": false, | |
| "gitlens.blame.toggleMode": "window" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment