diff options
Diffstat (limited to 'fnl')
| -rw-r--r-- | fnl/config/treesitter.fnl | 19 | 
1 files changed, 18 insertions, 1 deletions
diff --git a/fnl/config/treesitter.fnl b/fnl/config/treesitter.fnl index a76ff32..73ef8a5 100644 --- a/fnl/config/treesitter.fnl +++ b/fnl/config/treesitter.fnl @@ -3,7 +3,24 @@  (module config.treesitter {autoload {util util}})  (let [treesitter (util.load-plugin :nvim-treesitter.configs)] -  (treesitter.setup {:ensure_installed :all +  (treesitter.setup {:ensure_installed [:c +                                        :rust +                                        :lua +                                        :haskell +                                        :python +                                        :fennel +                                        :org +                                        :make +                                        :go +                                        :ocaml +                                        :erlang +                                        :vim +                                        :yaml +                                        :html +                                        :toml +                                        :dockerfile +                                        :markdown +                                        :latex]                       :sync_install false                       :ignore_install [""]                       :autopairs {:enable true}  |