20 lines
463 B
Fennel
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))
|