Files
dotfiles/.config/nvim/fnl/settings/treesitter.fnl
2022-08-30 17:48:42 +02:00

20 lines
463 B
Fennel

(import-macros {: setup} :macros)
(setup :nvim-treesitter.configs
{:ensure_installed
[:c
:fennel
:java
:javascript
:lua
:python
:rust
:typescript]
:sync_install false
:ignore_install []
:highlight {:enable true
:disable []
:additional_vim_regex_highlighting false}})
((. (require :nvim-treesitter.install) :setup_auto_install))