summaryrefslogtreecommitdiff
path: root/fnl/plugins/editor/better-escape.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-24 01:12:42 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-24 01:12:42 +0200
commit8ad2f8c9afb308e7a8a1133f578e3352442f770a (patch)
treea7a05ed7c472f186d6380dd918e2318d6d951330 /fnl/plugins/editor/better-escape.fnl
parentfd69ec549594d53b9503212d93a9a44f10eef478 (diff)
Restructure plugin configs
Diffstat (limited to 'fnl/plugins/editor/better-escape.fnl')
-rw-r--r--fnl/plugins/editor/better-escape.fnl12
1 files changed, 6 insertions, 6 deletions
diff --git a/fnl/plugins/editor/better-escape.fnl b/fnl/plugins/editor/better-escape.fnl
index cde61bc..5bd9b0c 100644
--- a/fnl/plugins/editor/better-escape.fnl
+++ b/fnl/plugins/editor/better-escape.fnl
@@ -1,8 +1,8 @@
;; Better escape without nasty delay.
-{1 :max397574/better-escape.nvim
- :event :BufReadPost
- :opts {:mapping [:kk :jj]
- :timeout vim.o.timeoutlen
- :clear_empty_lines false
- :keys :<Esc>}}
+(local opts {:mapping [:kk :jj]
+ :timeout vim.o.timeoutlen
+ :clear_empty_lines false
+ :keys :<Esc>})
+
+{1 :max397574/better-escape.nvim :event :BufReadPost : opts}