summaryrefslogtreecommitdiff
path: root/fnl/config/hop.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-07 23:23:59 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-07 23:23:59 +0200
commit936272fc2a5ae07470816d1b63f79bfadb3ef979 (patch)
treee040dcaf94b2199664847bf6521621538f316399 /fnl/config/hop.fnl
parent143d0de99399e9d6b4779ebd91a1cbcee5df5dd5 (diff)
fix: typo bugs
Diffstat (limited to 'fnl/config/hop.fnl')
-rw-r--r--fnl/config/hop.fnl6
1 files changed, 3 insertions, 3 deletions
diff --git a/fnl/config/hop.fnl b/fnl/config/hop.fnl
index 9f767b6..53ba9e9 100644
--- a/fnl/config/hop.fnl
+++ b/fnl/config/hop.fnl
@@ -3,8 +3,8 @@
{autoload {util util
nvim aniseed.nvim}})
-(set nvim.set_keymap "n" "s" ":HopChar2<cr>" { :silent true })
-(set nvim.set_keymap "n" "S" ":HopWord<cr>" { :silent true })
-
(let [hop (util.load-plugin :hop)]
(hop.setup {}))
+
+(nvim.set_keymap "n" "s" ":HopChar2<cr>" { :silent true })
+(nvim.set_keymap "n" "S" ":HopWord<cr>" { :silent true })