Skip to content

Instantly share code, notes, and snippets.

@fernyb
Last active March 15, 2021 16:01
Show Gist options
  • Save fernyb/9c07e778e252ce6ff54c351205f6da99 to your computer and use it in GitHub Desktop.
Save fernyb/9c07e778e252ce6ff54c351205f6da99 to your computer and use it in GitHub Desktop.
vscode settings.json vim comment block
{
"editor.tabSize": 2,
"workbench.colorTheme": "Moonlight II",
"editor.lineNumbers": "relative",
"editor.renderLineHighlight": "all",
"editor.minimap.enabled": false,
"vim.commandLineModeKeyBindings": [
],
"vim.leader": "\\",
"vim.normalModeKeyBindings": [
{
"before": ["<leader>", "<space>"],
"commands": [":nohls"]
},
{
"before": ["<leader>", "c", "<space>"],
"commands": [
"editor.action.commentLine"
],
},
{
"before": ["<leader>", "s"],
"commands": ["workbench.action.toggleSidebarVisibility"]
}
],
"vim.visualModeKeyBindings": [
{
"before": ["<leader>", "c", "<space>"],
"commands": [
"editor.action.commentLine"
],
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment