Skip to content

Instantly share code, notes, and snippets.

@polodev
Last active October 17, 2017 02:30
Show Gist options
  • Save polodev/7a659f4db0cd25096c68cb4a59b7c7d2 to your computer and use it in GitHub Desktop.
Save polodev/7a659f4db0cd25096c68cb4a59b7c7d2 to your computer and use it in GitHub Desktop.
vscode setting
{
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useCtrlKeys": false,
"vim.leader": ",",
"vim.hlsearch": true,
"editor.fontFamily": "'Fira Code', 'Fira Mono', Monaco, Menlo, monospace",
"editor.lineHeight": 20,
"editor.fontSize": 18,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.wordWrap": "off",
"editor.fontLigatures": true,
"vim.insertModeKeyBindings": [
{
"before": ["j","j"],
"after": ["<Esc>"]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": ["leader", "l"],
"after": [],
"commands": [
{
"command": "workbench.action.focusNextGroup",
"args": []
}
]
},
{
"before": ["leader", "h"],
"after": [],
"commands": [
{
"command": "workbench.action.focusPreviousGroup",
"args": []
}
]
},
{
"before": ["leader", "z"],
"after": [],
"commands": [
{
"command": "redo",
"args": []
}
]
}
],
"vim.disableAnnoyingNeovimMessage": true,
"window.zoomLevel": 0,
"workbench.sideBar.location": "left"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment