Skip to content

Instantly share code, notes, and snippets.

@Fusion86
Created January 22, 2026 12:25
Show Gist options
  • Select an option

  • Save Fusion86/5957f432f5e5654abdf7ccb8e4fe56ad to your computer and use it in GitHub Desktop.

Select an option

Save Fusion86/5957f432f5e5654abdf7ccb8e4fe56ad to your computer and use it in GitHub Desktop.
VSCode Setup
// Place your key bindings in this file to override the defaults
[
{
"key": "shift+alt+f",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
},
{
"key": "ctrl+shift+i",
"command": "-editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
},
{
"key": "shift+alt+f",
"command": "editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorReadonly"
},
{
"key": "ctrl+shift+i",
"command": "-editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorReadonly"
},
{
"key": "ctrl+c",
"command": "workbench.action.terminal.copySelection",
"when": "terminalFocus && terminalProcessSupported && terminalTextSelected"
},
{
"key": "ctrl+v",
"command": "workbench.action.terminal.paste",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+c",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u0003"
},
"when": "terminalFocus"
},
]
{
"workbench.secondarySideBar.defaultVisibility": "hidden",
"workbench.startupEditor": "none",
"python.analysis.typeCheckingMode": "standard",
"redhat.telemetry.enabled": false,
"explorer.confirmDelete": false,
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash"
},
"zsh": {
"path": "zsh"
},
"fish": {
"path": "/usr/bin/fish"
},
"tmux": {
"path": "tmux",
"icon": "terminal-tmux"
},
"pwsh": {
"path": "pwsh",
"icon": "terminal-powershell"
}
},
"terminal.integrated.defaultProfile.linux": "fish"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment