diff options
Diffstat (limited to 'fnl/config/which-key.fnl')
-rw-r--r-- | fnl/config/which-key.fnl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/fnl/config/which-key.fnl b/fnl/config/which-key.fnl index b9fc923..c98609d 100644 --- a/fnl/config/which-key.fnl +++ b/fnl/config/which-key.fnl @@ -169,9 +169,8 @@ '<ESC><CMD>lua require("Comment.api").toggle_linewise_op(vim.fn.visualmode())<CR>' "Comment" ]}) -(let [(ok? which-key) util.load-plugin :nvim-which-key.config] - (when ok? - (do - (which-key.setup setup) - (when.register mappings opts) - (when.register vmappings vopts)))) +(let [which-key (util.load-plugin :nvim-which-key.config)] + (do + (which-key.setup setup) + (when.register mappings opts) + (when.register vmappings vopts))) |