Skip to content

Instantly share code, notes, and snippets.

@heejongahn
Created March 25, 2019 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heejongahn/89dcd4495a1e5e0aa88e22cbb5b49e1f to your computer and use it in GitHub Desktop.
Save heejongahn/89dcd4495a1e5e0aa88e22cbb5b49e1f to your computer and use it in GitHub Desktop.
vscode setting
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+3",
"command": "editor.action.goToDeclaration",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "cmd+4",
"command": "workbench.action.navigateBack"
},
{
"key": "cmd+5",
"command": "editor.action.rename"
},
{
"key": "cmd+j",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "cmd+k",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "cmd+n",
"command": "workbench.action.terminal.newInActiveWorkspace",
"when": "terminalFocus"
},
{
"key": "cmd+w",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
}
]
{
"git.enableSmartCommit": true,
"editor.fontSize": 14,
"workbench.colorTheme": "Material Theme Darker High Contrast",
"workbench.colorCustomizations": { "editorRuler.foreground": "#747481" },
"materialTheme.fixIconsRunning": false,
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "Hack",
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 0,
"prettier.tslintIntegration": true,
"files.associations": {
"*.jsx": "javascriptreact"
},
"editor.rulers": [80, 120],
"breadcrumbs.enabled": true,
"terminal.integrated.rendererType": "dom",
"prettier.disableLanguages": [
"vue",
"ejs"
],
"editor.formatOnSave": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment