Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit d7cce54

Browse files
treesitter: additional language parsers
- "fennel", - "git_config", - "gitignore", - "graphql", - "http", - "jq", - "make", - "markdown", -- markdown pack includes agressive prettierd - "markdown_inline", - "org", - "python", - "r", - "regex", - "sql", - "yaml", -- yaml pack includes agressive prettierd
1 parent 37a7bda commit d7cce54

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

plugins/treesitter.lua

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ return {
33
opts = function(_, opts)
44
-- add more things to the ensure_installed table protecting against community packs modifying it
55
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
6+
-- `community.lua` ensures parsers via their language packs
7+
"fennel",
8+
"git_config",
9+
"gitignore",
10+
"graphql",
11+
"http",
12+
"jq",
13+
"make",
14+
"markdown",
15+
"markdown_inline",
16+
"org",
17+
"python",
18+
"r",
19+
"regex",
20+
"sql",
21+
"yaml", -- yaml pack includes agressive prettierd
622
})
723
end,
824
}

0 commit comments

Comments
 (0)