Last active
April 11, 2018 09:16
-
-
Save gko/f2f10b35172af88a65c53c05408e67f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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