Skip to content

Instantly share code, notes, and snippets.

@nontravis
Created August 11, 2018 13:44
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 nontravis/c520b18cacafb53432e0f39c2ce4ef61 to your computer and use it in GitHub Desktop.
Save nontravis/c520b18cacafb53432e0f39c2ce4ef61 to your computer and use it in GitHub Desktop.
VScode vim setting
// ============ vim ============ //
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"L"
],
"after": [
"g",
"t"
]
},
{
"before": [
"<leader>",
"t"
],
"commands": [
{
"command": "workbench.action.terminal.focus"
}
]
},
{
"before": [
"<leader>",
"p"
],
"commands": [
{
"command": "workbench.action.togglePanel"
}
]
},
{
"before": [
"<leader>",
"o"
],
"commands": [
{
"command": "workbench.action.output.toggleOutput"
}
]
},
{
"before": [
"<leader>",
"k"
],
"after": [
"k",
"k"
]
},
{
"before": [
"H"
],
"after": [
"g",
"T"
]
},
{
"before": [
"c-k"
],
"after": [
"k",
"k",
"k",
"k",
"k"
]
},
{
"before": [
"c-j"
],
"after": [
"j",
"j",
"j",
"j",
"j"
]
},
{
"before": [
"f"
],
"after": [
"\\",
"\\",
"s"
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment