aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorrydesun <rydesun@gmail.com>2021-09-01 22:25:45 +0800
committerStephan Seitz <stephan.seitz@fau.de>2021-09-17 21:06:36 +0200
commit20a226652c8e5742f7228b616445756aa82d9011 (patch)
treedb9d99606fc25ae9e99406d9482d97d9e913aaad /lua
parentUpdate lockfile.json (#1778) (diff)
downloadnvim-treesitter-20a226652c8e5742f7228b616445756aa82d9011.tar
nvim-treesitter-20a226652c8e5742f7228b616445756aa82d9011.tar.gz
nvim-treesitter-20a226652c8e5742f7228b616445756aa82d9011.tar.bz2
nvim-treesitter-20a226652c8e5742f7228b616445756aa82d9011.tar.lz
nvim-treesitter-20a226652c8e5742f7228b616445756aa82d9011.tar.xz
nvim-treesitter-20a226652c8e5742f7228b616445756aa82d9011.tar.zst
nvim-treesitter-20a226652c8e5742f7228b616445756aa82d9011.zip
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')
-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 7b9d28b1f..9c59cbd9d 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",