Skip to content

Instantly share code, notes, and snippets.

@chrisarcand
Created April 4, 2019 15:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisarcand/8a03535ccab2e39aad5aeae5c31de18d to your computer and use it in GitHub Desktop.
Save chrisarcand/8a03535ccab2e39aad5aeae5c31de18d to your computer and use it in GitHub Desktop.
VSCode customization....so far.
// Place your key bindings in this file to override the defaults
[
{
"key": "j",
"command": "list.focusDown",
"when": "listFocus"
},
{
"key": "ctrl+f",
"command": "list.focusPageDown",
"when": "listFocus && !inputFocus"
},
{
"key": "k",
"command": "list.focusUp",
"when": "listFocus"
},
{
"key": "ctrl+b",
"command": "list.focusPageUp",
"when": "listFocus && !inputFocus"
},
{
"key": "enter",
"command": "list.select",
"when": "explorerViewletVisible && filesExplorerFocus"
},
{
"key": "o",
"command": "list.toggleExpand",
"when": "listFocus"
},
{
"key": "tab",
"command": "selectNextSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
{
"key": "shift+tab",
"command": "selectPrevSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
{
"key": "cmd+0",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal"
},
{
"key": "shift+cmd+`",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+shift+`",
"command": "-workbench.action.terminal.new"
},
{
"key": "cmd+m",
"command": "workbench.action.toggleMaximizedPanel",
"when": "terminalFocus"
},
{
"key": "cmd+r",
"command": "workbench.action.openRecent"
},
{
"key": "ctrl+r",
"command": "-workbench.action.openRecent"
},
{
"key": "shift+cmd+r",
"command": "workbench.action.reloadWindow",
"when": "isDevelopment"
},
{
"key": "cmd+r",
"command": "-workbench.action.reloadWindow",
"when": "isDevelopment"
},
{
"key": "cmd+0",
"command": "-workbench.action.focusSideBar"
},
]
{
"vim.leader": ",",
"window.zoomLevel": 0,
"editor.cursorStyle": "block",
"terminal.integrated.confirmOnExit": true,
"terminal.integrated.shell.linux": "/usr/local/bin/zsh",
"terminal.integrated.shell.osx": "/usr/local/bin/zsh",
"window.title": "${activeEditorLong}${separator}${rootName}",
"workbench.colorTheme": "Base16 Dark Default",
"workbench.colorCustomizations": {
"statusBar.background": "#585858",
"editorCodeLens.foreground": "#585858",
},
"search.followSymlinks": false,
"bustagem.cmd.rip": "/Users/chris/.rbenv/shims/ripper-tags -f TAGS -R --force --extra=q",
"bustagem.cmd.bundle": "/Users/chris/.rbenv/shims/bundler show --paths",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment