diff options
| author | Gustaf Rydholm <gustaf@nexure.io> | 2022-10-17 09:00:28 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf@nexure.io> | 2022-10-17 09:00:28 +0200 |
| commit | f9c022399a35558fe7f997dbeab3c26d7f955992 (patch) | |
| tree | 30dfed56d752ff779da584ab502e9a3bda952215 /fnl/config/leap.fnl | |
| parent | a45853f468feb2be399a587664df7f4872816b53 (diff) | |
| parent | f3432fc8f42246ac26f90146f13045377bc3899e (diff) | |
Merge branch 'master' of github.com:aktersnurra/nvim
Diffstat (limited to 'fnl/config/leap.fnl')
| -rw-r--r-- | fnl/config/leap.fnl | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/fnl/config/leap.fnl b/fnl/config/leap.fnl index cb6a267..868f9eb 100644 --- a/fnl/config/leap.fnl +++ b/fnl/config/leap.fnl @@ -1,19 +1,8 @@ ;; Leap through text. -(module config.leap {autoload {: util nvim aniseed.nvim}}) +(module config.leap {autoload {util config.util nvim aniseed.nvim}}) -(def- opts {:max_aot_targets nil - :highlight_unlabeled false - :max_highlighted_traversal_targets 10 - :case_sensitive false - :equivalence_classes [" \t\r\n"] - :substitute_chars [] - :special_keys {:repeat_search :<enter> - :next_aot_match :<enter> - :next_match [";" :<enter>] - :prev_match ["," :<tab>] - :next_group :<space> - :prev_group :<tab>}}) +(def- opts {}) -(let [leap (util.load-plugin :leap)] +(let [leap (util.prequire :leap)] (leap.setup opts) (leap.set_default_keymaps)) |