trixy/fnl/plugins/treesitter.fnl
2025-07-23 22:52:11 +02:00

31 lines
512 B
Fennel
Executable file

(local configs (require :nvim-treesitter.configs))
; (local parsers (require :nvim-treesitter.parsers))
(configs.setup
{ :ensure_installed
[ :c
:rust
:lua
:vim
:vimdoc
:query
:haskell
:go
:bash
:python
:fennel
:hyprlang ]
:sync_install false
:auto_install true
:highlight
{ :enable true }})
(vim.filetype.add
{ :pattern
{ :.*/hypr/.*%.conf :hyprlang }})
(vim.filetype.add
{ :pattern
{ :*.tex :latex }})