diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-05-01 23:06:03 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-05-01 23:06:03 +0200 |
commit | f845a7b0588559750b1cb7eede1b3aecb450cdfe (patch) | |
tree | 1c2028e77ef60fb5a00e0abce46a0d4bf66d76d9 /fnl/config/treesitter.fnl | |
parent | 609daf2f632e907f0aed920084b51f608a63edf7 (diff) |
style: fmt with fnlfmt
Diffstat (limited to 'fnl/config/treesitter.fnl')
-rw-r--r-- | fnl/config/treesitter.fnl | 61 |
1 files changed, 30 insertions, 31 deletions
diff --git a/fnl/config/treesitter.fnl b/fnl/config/treesitter.fnl index ebb2a33..cdc8a7a 100644 --- a/fnl/config/treesitter.fnl +++ b/fnl/config/treesitter.fnl @@ -1,35 +1,34 @@ ;; Treesitter is a tool for building syntax trees for source files. ;; In the neovim context it helps with better coloring. -(module config.treesitter - {autoload {util util}}) +(module config.treesitter {autoload {util util}}) (let [treesitter (util.load-plugin :nvim-treesitter.configs)] - (treesitter.setup - {:ensure_installed [:c - :rust - :lua - :hcl - :org - :haskell - :python - :fennel - :make - :go - :ocaml - :erlang - :vim - :yaml - :html - :toml - :dockerfile - :markdown - :latex] - :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}})) + (treesitter.setup {:ensure_installed [:c + :rust + :lua + :hcl + :org + :haskell + :python + :fennel + :make + :go + :ocaml + :erlang + :vim + :yaml + :html + :toml + :dockerfile + :markdown + :latex] + :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}})) |