diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-17 22:37:10 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-17 22:37:10 +0200 |
commit | 8d20804c761dcd0c21cd8fc26fd64f7f5d95aa72 (patch) | |
tree | 5a2642233767bec76628f3b2bb89d8bb863951a2 /fnl/plugins | |
parent | 73479a1b6d5b462b7e46625dd764d6baea4e6d92 (diff) |
Add sql to treesitter
Diffstat (limited to 'fnl/plugins')
-rw-r--r-- | fnl/plugins/editor/treesitter.fnl | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/fnl/plugins/editor/treesitter.fnl b/fnl/plugins/editor/treesitter.fnl index 70a3cc8..bb22287 100644 --- a/fnl/plugins/editor/treesitter.fnl +++ b/fnl/plugins/editor/treesitter.fnl @@ -2,24 +2,25 @@ ;; In the neovim context it helps with better coloring. (local opts {:ensure_installed [:c - :rust - :lua - :hcl - :org - :haskell - :python + :dockerfile + :erlang :fennel - :make :go - :ocaml - :erlang - :vim - :yaml + :haskell + :hcl :html - :toml - :dockerfile + :latex + :lua + :make :markdown - :latex] + :ocaml + :org + :python + :rust + :sql + :toml + :vim + :yaml] :sync_install false :ignore_install [""] :autopairs {:enable true} |