Skip to content

Instantly share code, notes, and snippets.

@gko
Last active April 11, 2018 09:16
Show Gist options
  • Save gko/f2f10b35172af88a65c53c05408e67f1 to your computer and use it in GitHub Desktop.
Save gko/f2f10b35172af88a65c53c05408e67f1 to your computer and use it in GitHub Desktop.
{
"vim.cursorStylePerMode": {
"insert": "line",
"normal": "underline",
"replace": "line",
"visual": "underline",
"visualblock": "underline",
"visualline": "underline"
},
"vim.disableAnnoyingNeovimMessage": true,
"vim.easymotion": true,
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-k>": false,
"<C-n>": false,
"<C-w>": false,
"<^>": false
},
"vim.hlsearch": true,
"vim.incsearch": true,
"vim.insertModeKeyBindings": [
{
"after": [
"<Esc>"
],
"before": [
"j",
"j"
]
}
],
"vim.leader": ",",
"vim.otherModesKeyBindingsNonRecursive": [
{
"after": [
"d",
"d"
],
"before": [
"<leader>",
"d"
]
},
{
"after": [],
"before": [
"<C-n>"
],
"commands": [
{
"command": ":nohl"
}
]
}
],
"vim.useCtrlKeys": true,
"vim.useSystemClipboard": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment