Skip to content

Instantly share code, notes, and snippets.

@mishazawa
Last active April 17, 2026 18:00
Show Gist options
  • Select an option

  • Save mishazawa/552d3b80ec9a03fd0e5f6e380b66c597 to your computer and use it in GitHub Desktop.

Select an option

Save mishazawa/552d3b80ec9a03fd0e5f6e380b66c597 to your computer and use it in GitHub Desktop.
VSCodium settings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+cmd+down",
"command": "-editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+cmd+up",
"command": "-editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "cmd+down",
"command": "-interactive.scrollToBottom",
"when": "resourceScheme == 'vscode-interactive'"
},
{
"key": "cmd+up",
"command": "-interactive.scrollToTop",
"when": "resourceScheme == 'vscode-interactive'"
},
{
"key": "cmd+up",
"command": "-cursorTop",
"when": "textInputFocus"
},
{
"key": "cmd+down",
"command": "-cursorBottom",
"when": "textInputFocus"
},
{
"key": "ctrl+j",
"command": "workbench.action.togglePanel"
},
{
"key": "cmd+j",
"command": "-workbench.action.togglePanel"
},
{
"key": "cmd+j",
"command": "editor.action.joinLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+j",
"command": "-editor.action.joinLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "cmd+k cmd+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "cmd+k cmd+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "cmd+k e",
"command": "-workbench.files.action.focusOpenEditorsView",
"when": "workbench.explorer.openEditorsView.active"
}
]
{
"workbench.colorTheme": "Alabaster",
"security.workspace.trust.untrustedFiles": "open",
"telemetry.telemetryLevel": "off",
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground1": "#ffff00",
"editorIndentGuide.background1": "#5e5e5e",
"editorLineNumber.foreground": "#64c721",
"editorLineNumber.activeForeground": "#ff6a00",
"list.activeSelectionBackground": "#ff0000",
"editorRuler.foreground": "#ff408155",
},
"workbench.tree.indent": 15,
"workbench.tree.renderIndentGuides": "none",
"explorer.confirmDelete": false,
"emmet.excludeLanguages": ["markdown", "typescriptreact"],
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"terminal.integrated.sendKeybindingsToShell": true,
"git.autofetch": true,
"editor.renderWhitespace": "all",
"editor.fontSize": 14,
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"class": {
"underline": false,
},
"type": {
"underline": false,
"foreground": "#ff00ff",
},
},
},
"files.exclude": {
"**/*.meta": true,
},
"extensions.ignoreRecommendations": true,
"explorer.confirmDragAndDrop": false,
"editor.formatOnSave": true,
"files.associations": {
"*.gyp": "json",
},
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true,
"editor.tabSize": 4,
},
"workbench.startupEditor": "none",
"editor.parameterHints.enabled": false,
"editor.tabSize": 2,
"git.openRepositoryInParentFolders": "never",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features",
},
"launch": {
"configurations": [],
"compounds": [],
},
"workbench.activityBar.location": "hidden",
"breadcrumbs.enabled": false,
"git.ignoreMissingGitWarning": true,
"explorer.confirmPasteNative": false,
"terminal.integrated.enableMultiLinePasteWarning": "never",
"window.zoomLevel": 1,
"remote.autoForwardPortsSource": "hybrid",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"editor.stickyScroll.enabled": false,
"workbench.tree.enableStickyScroll": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "on",
"editor.rulers": [80, 120],
"git.confirmSync": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment