1234567891011121314151617181920212223242526272829303132 |
- [[language]]
- name = "bare"
- scope = "source.bare"
- injection-regex = "bare"
- file-types = ["bare"]
- roots = []
- comment-token = "#"
- indent = { tab-width = 2, unit = "\t" }
- [[language]]
- name = "go"
- scope = "source.go"
- injection-regex = "go"
- file-types = ["go"]
- roots = ["go.work", "go.mod"]
- auto-format = true
- comment-token = "//"
- indent = { tab-width = 2, unit = "\t" }
- [[language]]
- name = "dirty"
- scope = "source.dirty"
- injection-regex = "dirty"
- file-types = ["dirty"]
- roots = []
- comment-token = "#"
- indent = { tab-width = 2, unit = "\t" }
- [language.auto-pairs]
- '(' = ')'
- [[grammar]]
- name = "dirty"
- source = { path = "/home/adam/Code/current/tree-sitter-dirty" }
|