diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 18:52:34 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 18:52:34 +0200 |
commit | b74c9dd22e632bbe720587db92966c4d6811b766 (patch) | |
tree | f68e5bb862fd5a800f86852e535d29984f461cb3 /fnl/config/hop.fnl | |
parent | 274648011686b1c822e63b03bdcc6f2ce8e9b41e (diff) |
style: format with fnlfmt
Diffstat (limited to 'fnl/config/hop.fnl')
-rw-r--r-- | fnl/config/hop.fnl | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/fnl/config/hop.fnl b/fnl/config/hop.fnl index 53ba9e9..f623c0f 100644 --- a/fnl/config/hop.fnl +++ b/fnl/config/hop.fnl @@ -1,10 +1,8 @@ ;; Hopping in text. -(module config.hop - {autoload {util util - nvim aniseed.nvim}}) +(module config.hop {autoload {util util nvim aniseed.nvim}}) (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 }) +(nvim.set_keymap :n :s ":HopChar2<cr>" {:silent true}) +(nvim.set_keymap :n :S ":HopWord<cr>" {:silent true}) |