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/treesitter.fnl | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) (limited to 'fnl/config/treesitter.fnl') diff --git a/fnl/config/treesitter.fnl b/fnl/config/treesitter.fnl index cfbf00c..1fc0ec2 100644 --- a/fnl/config/treesitter.fnl +++ b/fnl/config/treesitter.fnl @@ -3,19 +3,18 @@ (module config.treesitter {autoload {util util}}) -(let [(ok? treesitter) util.load-plugin :nvim-treesitter.config] - (when ok? - (treesitter.setup - {:ensure_installed "maintained" - :sync_install false - :ignore_install { "" } - :autopairs { :enable true } - :highlight { - :enable true - :disable [ "org" ] - :additional_vim_regex_highlighting [ "org" ]}} - :context_commentstring { - :enable true - :enable_autocmd false} - :indent { :enable true :disable [ "yaml" "python" "css" ] } - :playground { :enable true }} +(let [treesitter (util.load-plugin :nvim-treesitter.config)] + (treesitter.setup + {:ensure_installed "maintained" + :sync_install false + :ignore_install { "" } + :autopairs { :enable true } + :highlight { + :enable true + :disable [ "org" ] + :additional_vim_regex_highlighting [ "org" ]}} + :context_commentstring { + :enable true + :enable_autocmd false} + :indent { :enable true :disable [ "yaml" "python" "css" ] } + :playground { :enable true }})) -- cgit v1.2.3-70-g09d2