-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtreesitter.fnl
18 lines (18 loc) · 984 Bytes
/
treesitter.fnl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[{1 :nvim-treesitter/nvim-treesitter
:build ":TSUpdate"
:config (fn []
(let [treesitter (require :nvim-treesitter.configs)]
(treesitter.setup {:highlight {:enable true}
:indent {:enable true}
:ensure_installed [:bash
:clojure
:commonlisp
:dockerfile
:fennel
:html
:java
:javascript
:json
:lua
:markdown
:yaml]})))}]