summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/plugin_settings.lua21
1 files changed, 2 insertions, 19 deletions
diff --git a/.config/nvim/lua/plugin_settings.lua b/.config/nvim/lua/plugin_settings.lua
index a965f6b..48426ba 100644
--- a/.config/nvim/lua/plugin_settings.lua
+++ b/.config/nvim/lua/plugin_settings.lua
@@ -582,25 +582,8 @@ require("dial.config").augends:register_group{
582 582
583-- leap.nvim {{{ -- 583-- leap.nvim {{{ --
584require('leap').setup { 584require('leap').setup {
585 max_aot_targets = nil, 585 case_insensitive = true,
586 highlight_unlabeled = false, 586 substitute_chars = { ['\r'] = '¬' }
587 case_sensitive = false,
588 -- Groups of characters that should match each other.
589 -- Obvious candidates are braces & quotes ('([{', ')]}', '`"\'').
590 character_classes = { ' \t\r\n', },
591 -- Leaving the appropriate list empty effectively disables "smart" mode,
592 -- and forces auto-jump to be on or off.
593 -- safe_labels = { . . . },
594 -- labels = { . . . },
595 -- These keys are captured directly by the plugin at runtime.
596 -- (For `prev_match`, I suggest <s-enter> if possible in the terminal/GUI.)
597 special_keys = {
598 repeat_search = '<enter>',
599 next_match = '<enter>',
600 prev_match = '<tab>',
601 next_group = '<space>',
602 prev_group = '<tab>',
603 },
604} 587}
605 588
606-- }}} leap.nvim -- 589-- }}} leap.nvim --