Skip to content

Instantly share code, notes, and snippets.

@riljian
Created July 31, 2023 05:28
Show Gist options
  • Save riljian/d53e003e153fe1b4114665007479d74c to your computer and use it in GitHub Desktop.
Save riljian/d53e003e153fe1b4114665007479d74c to your computer and use it in GitHub Desktop.
VS code user config
{
"workbench.startupEditor": "none",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"terminal.integrated.defaultProfile.osx": "zsh",
"npm.packageManager": "npm",
"vim.easymotion": true,
"vim.normalModeKeyBindings": [
{
"before": ["t", "h"],
"commands": ["workbench.action.previousEditor"]
},
{
"before": ["t", "l"],
"commands": ["workbench.action.nextEditor"]
},
{
"before": ["g", "c"],
"commands": ["workbench.action.editor.nextChange"]
},
{
"before": ["g", "e"],
"commands": ["editor.action.marker.next"]
},
{
"before": ["<space>", "/"],
"after": ["<leader>", "<leader>", "s"]
}
],
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"jest.autoRevealOutput": "off",
"jest.autoRun": {
"watch": false,
"onStartup": false,
"onSave": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment