Skip to content

Instantly share code, notes, and snippets.

@ksaldana1
Created August 23, 2019 16:54
Show Gist options
  • Save ksaldana1/15ad0644dd818cd5cbd9fd0f71803b11 to your computer and use it in GitHub Desktop.
Save ksaldana1/15ad0644dd818cd5cbd9fd0f71803b11 to your computer and use it in GitHub Desktop.
easymotion settings in vscode
{
"vim.easymotion": true,
"vim.easymotionMarkerHeight": 20,
"vim.easymotionMarkerWidthPerChar": 12,
"vim.easymotionMarkerFontSize": "16",
"vim.easymotionMarkerBackgroundColor": "#428aff",
"vim.easymotionMarkerForegroundColorOneChar": "#fffcfc",
"vim.easymotionMarkerForegroundColorTwoChar": "#fffcfc",
"vim.easymotionMarkerFontFamily": "Arial",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [" "],
"after": ["leader", "leader", "leader", "b", "d", "w"]
}
]
}
@fcFn
Copy link

fcFn commented Jul 6, 2024

By the way, I suggest adding those to "vim.visualModeKeyBindingsNonRecursive" as well so you can select things in Visual mode with EasyMotion.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment