diff options
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/config/hop.fnl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fnl/config/hop.fnl b/fnl/config/hop.fnl new file mode 100644 index 0000000..d12c650 --- /dev/null +++ b/fnl/config/hop.fnl @@ -0,0 +1,11 @@ +;; Hopping in text. +(module config.hop + {autoload {util util + nvim aniseed.nvim}}) + +(let [(ok? hop) util.load-plugin :hop] + (when ok? + (hop.setup {}))) + +(nvim.set_keymap "n" "s" ":HopChar2<cr>" { :silent true }) +(nvim.set_keymap "n" "S" ":HopWord<cr>" { :silent true }) |