From 71d538630b226da37e4ef21c5a84d6fad5f55421 Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Thu, 7 Apr 2022 22:32:53 +0200 Subject: fix(load plugin): correct loading err --- fnl/config/autopairs.fnl | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) (limited to 'fnl/config/autopairs.fnl') diff --git a/fnl/config/autopairs.fnl b/fnl/config/autopairs.fnl index 289db34..8d7025c 100644 --- a/fnl/config/autopairs.fnl +++ b/fnl/config/autopairs.fnl @@ -2,25 +2,24 @@ (module config.autopairs {autoload {util util}}) -(let [(ok? npairs) util.load-plugin :nvim-autopairs] - (when ok? - (npairs.setup { - :check_ts true - :ts_config { - :lua [ :string :source ] - :javascript [ :string :template_string ] - :java false - } - :disable_filetype [ :TelescopePrompt :spectre_panel ] - :fast_warp { - :map "" - :chars [ "{" "[" "(" '"' "'" ] - :pattern string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", "") - :check_comma true - :highlight :PmenuSel - :highlight_grey :LineNr - :offset 0 - :end_key $ - :keys qwertyuiopzxcvbnmasdfghjkl - :highlight PmenuSel - :highlight_grey LineNr}})) +(let [npairs (util.load-plugin :nvim-autopairs)] + (npairs.setup { + :check_ts true + :ts_config { + :lua [ :string :source ] + :javascript [ :string :template_string ] + :java false + } + :disable_filetype [ :TelescopePrompt :spectre_panel ] + :fast_warp { + :map "" + :chars [ "{" "[" "(" '"' "'" ] + :pattern string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", "") + :check_comma true + :highlight :PmenuSel + :highlight_grey :LineNr + :offset 0 + :end_key $ + :keys qwertyuiopzxcvbnmasdfghjkl + :highlight PmenuSel + :highlight_grey LineNr}}) -- cgit v1.2.3-70-g09d2