diff options
Diffstat (limited to 'fnl/config/better-escape.fnl')
-rw-r--r-- | fnl/config/better-escape.fnl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/fnl/config/better-escape.fnl b/fnl/config/better-escape.fnl index 83b4d07..5c993b7 100644 --- a/fnl/config/better-escape.fnl +++ b/fnl/config/better-escape.fnl @@ -3,10 +3,9 @@ {autoload {util util}}) -(let [(ok? better-escape) util.load-plugin :better-escape] - (when ok? - (better-escape.setup { - :mapping ["jk" "jj"] - :timeout vim.o.timeoutlen - :clear_empty_lines false - :keys "<Esc>"}}))) +(let [better-escape (util.load-plugin :better-escape)] + (better-escape.setup { + :mapping ["jk" "jj"] + :timeout vim.o.timeoutlen + :clear_empty_lines false + :keys "<Esc>"}})) |