Nvim: add all after/ files

This commit is contained in:
Robert Kmieć
2022-06-29 22:13:40 +02:00
parent 0353364e97
commit bd3af29f38
15 changed files with 295 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
local leap = require('leap')
leap.setup {
case_insensitive = true,
-- Leaving the appropriate list empty effectively disables "smart" mode,
-- and forces auto-jump to be on or off.
--safe_labels = { . . . },
--labels = { . . . },
-- These keys are captured directly by the plugin at runtime.
special_keys = {
repeat_search = '<enter>',
next_match = '<enter>',
prev_match = '<tab>',
next_group = '<space>',
prev_group = '<tab>',
eol = '<space>',
},
}
leap.set_default_keymaps()