Skip to content

Instantly share code, notes, and snippets.

@marutanm
Last active July 11, 2019 01:44
Show Gist options
  • Save marutanm/78ba4cdd4099a343abbc53310f211078 to your computer and use it in GitHub Desktop.
Save marutanm/78ba4cdd4099a343abbc53310f211078 to your computer and use it in GitHub Desktop.
VSCode
{
"vim.leader": " ",
"vim.hlsearch": true,
"vim.visualstar": true,
"vim.whichwrap": "h,l,<,>,[,]",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [";"],
"after": [":"]
},
{
"before": [":"],
"after": [";"]
},
{
"before": ["j"],
"after": ["g", "j"]
},
{
"before": ["k"],
"after": ["g", "k"]
},
{
"before": ["f"],
"after": ["leader", "leader", "f"]
},
{
"before": ["<leader>", "<leader>"],
"after": [],
"commands": [
{
"command": "workbench.action.quickOpen",
"args": []
}
]
},
],
"vim.normalModeKeyBindings": [
{
"before": ["<Esc>"],
"commands": [":nohlsearch"]
},
{
"before": ["<C-[>"],
"commands": [":nohlsearch"]
},
{
"before": ["<leader>", "/"],
"after": [],
"commands": [
{
"command": "actions.find",
"args": []
}
]
},
{
"before": [
"<Enter>"
],
"commands": [
"editor.action.insertLineAfter"
]
},
{
"before": ["<BS>", "<BS>"],
"commands": [
"workbench.action.files.save",
]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
";"
],
"after": [
":"
]
},
{
"before": [
":"
],
"after": [
";"
]
}
],
"vim.easymotion": true,
"vim.easymotionMarkerBackgroundColor": "rgba(0, 0, 0, 0.7)",
"vim.easymotionMarkerForegroundColorOneChar": "yellow",
"vim.easymotionMarkerForegroundColorTwoChar": "pink",
"vim.easymotionMarkerFontFamily": "Menlo",
"vim.easymotionMarkerWidthPerChar": 12,
"vim.easymotionMarkerHeight": 15,
"vim.easymotionMarkerFontSize": "15",
"vim.easymotionMarkerYOffset": 8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment