Created
August 22, 2026 19:18
-
-
Save pojntfx/c41f1ea559bb861d6e0500c64c93753b to your computer and use it in GitHub Desktop.
Personal VSCodium Configuration
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 defaults | |
| [ | |
| { | |
| "key": "ctrl+shift+\\", | |
| "command": "workbench.action.toggleAuxiliaryBar" | |
| }, | |
| { | |
| "key": "ctrl+alt+b", | |
| "command": "-workbench.action.toggleAuxiliaryBar" | |
| }, | |
| { | |
| "key": "alt+r", | |
| "command": "editor.action.rename", | |
| "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "f2", | |
| "command": "-editor.action.rename", | |
| "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+r", | |
| "command": "renameFile", | |
| "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" | |
| }, | |
| { | |
| "key": "f2", | |
| "command": "-renameFile", | |
| "when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+alt+e", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "ctrl+e", | |
| "command": "-workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "alt+left", | |
| "command": "workbench.action.navigateBack", | |
| "when": "canNavigateBack" | |
| }, | |
| { | |
| "key": "browserback", | |
| "command": "-workbench.action.navigateBack", | |
| "when": "canNavigateBack" | |
| }, | |
| { | |
| "key": "alt+right", | |
| "command": "workbench.action.navigateForward", | |
| "when": "canNavigateForward" | |
| }, | |
| { | |
| "key": "browserforward", | |
| "command": "-workbench.action.navigateForward", | |
| "when": "canNavigateForward" | |
| } | |
| ] |
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
| { | |
| "claudeCode.preferredLocation": "panel", | |
| "vim.handleKeys": { | |
| "<C-p>": false, | |
| "<C-j>": false, | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "window.autoDetectColorScheme": true, | |
| "git.alwaysSignOff": true, | |
| "remote.autoForwardPortsSource": "hybrid", | |
| "go.toolsManagement.autoUpdate": true, | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "geminicodeassist.displayInlineContextHint": false, | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "claudeCode.selectedModel": "default", | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "redhat.telemetry.enabled": false, | |
| "terminal.integrated.defaultProfile.linux": "bash", | |
| "terminal.integrated.profiles.linux": { | |
| "bash": { | |
| "path": "/usr/bin/flatpak-spawn", | |
| "args": ["--host", "--env=TERM=xterm-256color", "bash"], | |
| "icon": "terminal-bash", | |
| "overrideName": true, | |
| }, | |
| }, | |
| "files.exclude": {}, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "git.replaceTagsWhenPull": true, | |
| "terminal.integrated.initialHint": false, | |
| "workbench.editorAssociations": { | |
| "{hexdiff}:/**/*.*": "hexEditor.hexedit", | |
| "{git,gitlens,chat-editing-snapshot-text-model,copilot,git-graph,git-graph-3}:/**/*.qrc": "default", | |
| "*.qrc": "qt-core.qrcEditor", | |
| }, | |
| "claudeCode.allowDangerouslySkipPermissions": true, | |
| "[toml]": { | |
| "editor.defaultFormatter": "tombi-toml.tombi", | |
| }, | |
| "[ansible]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "ansible.lightspeed.enabled": false, | |
| "[yaml]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "kimi.yoloMode": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment