Skip to content

Instantly share code, notes, and snippets.

@isapir
Last active June 7, 2025 17:58
Show Gist options
  • Save isapir/5afeccc4b35991ccb05eab98c00214fa to your computer and use it in GitHub Desktop.
Save isapir/5afeccc4b35991ccb05eab98c00214fa to your computer and use it in GitHub Desktop.
VSCode or Codium
### code --list-extensions | xargs -L1 echo "code --install-extension"
code --install-extension cfmleditor.cfmleditor
code --install-extension davidrogers.luceedebug
code --install-extension docker.docker
code --install-extension domenicc.cfml-component-paths
code --install-extension mechatroner.rainbow-csv
code --install-extension ms-azuretools.vscode-containers
code --install-extension ms-vscode-remote.remote-containers
code --install-extension ms-vscode-remote.remote-ssh
code --install-extension ms-vscode-remote.remote-ssh-edit
code --install-extension ms-vscode.remote-explorer
code --install-extension ortus-solutions.vscode-testbox
code --install-extension redhat.vscode-xml
code --install-extension redhat.java
code --install-extension vscjava.vscode-gradle
code --install-extension vscjava.vscode-java-debug
code --install-extension vscjava.vscode-java-dependency
code --install-extension vscjava.vscode-java-pack
code --install-extension vscjava.vscode-java-test
code --install-extension vscjava.vscode-maven
// ~/.config/Code/User/keybindings.json
[
{
"key": "ctrl+shift+d",
"command": "-workbench.view.debug"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+u",
"command": "-editor.action.removeCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "ctrl+alt+[",
"command": "editor.toggleFold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+k ctrl+l",
"command": "-editor.toggleFold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+k ctrl+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+alt+-",
"command": "-workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.navigateForward"
},
{
"key": "ctrl+shift+alt+d",
"command": "editor.action.selectHighlights",
"when": "editorFocus"
}
]
// ~/.config/Code/User/settings.json
{
"git.blame.editorDecoration.enabled": true,
"git.blame.statusBarItem.enabled": false,
"git.autofetch": true,
"git.confirmSync": false,
"terminal.integrated.fontFamily": "MesloLGM Nerd Font Mono",
"workbench.editor.empty.hint": "hidden"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment