trixy/fnl/plugins/treesitter.fnl

27 lines
414 B
Plaintext
Raw Normal View History

2024-07-14 19:04:45 +02:00
(local configs (require :nvim-treesitter.configs))
2024-07-20 13:18:47 +02:00
; (local parsers (require :nvim-treesitter.parsers))
2024-07-14 19:04:45 +02:00
2024-07-20 13:18:47 +02:00
(configs.setup
{ :ensure_installed
[ :c
:lua
:vim
:vimdoc
:query
:haskell
:go
:bash
:python
:fennel
:hyprlang ]
2024-07-14 19:04:45 +02:00
2024-07-20 13:18:47 +02:00
:sync_install false
:auto_install true
2024-07-14 19:04:45 +02:00
2024-07-20 13:18:47 +02:00
:highlight
{ :enable true }})
2024-07-14 19:04:45 +02:00
2024-07-20 13:18:47 +02:00
(vim.filetype.add
{ :pattern
{ :.*/hypr/.*%.conf :hyprlang }})