summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter
diff options
context:
space:
mode:
authorrydesun <rydesun@gmail.com>2021-09-01 22:25:45 +0800
committerGitHub <noreply@github.com>2021-09-01 09:25:45 -0500
commitf900e5dfc889f5c48803d0723ec395ffe46e7bad (patch)
treedb9d99606fc25ae9e99406d9482d97d9e913aaad /lua/nvim-treesitter
parent34de06d4e8fc46090325dcaa3e8d74e295dd8ef1 (diff)
Add tree-sitter-dot (#1770)
* Add tree-sitter-dot * Fix DOT highlights * highlights(DOT): add HTML string * Remove DOT ftdetect Vim and Neovim runtime have added DOT filetype detection * Update DOT highlights
Diffstat (limited to 'lua/nvim-treesitter')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 7b9d28b1..9c59cbd9 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -94,6 +94,15 @@ list.dockerfile = {
maintainers = { "@camdencheek" },
}
+list.dot = {
+ install_info = {
+ url = "https://github.com/rydesun/tree-sitter-dot",
+ branch = "main",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@rydesun" },
+}
+
list.rust = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-rust",