diff options
| author | rydesun <rydesun@gmail.com> | 2021-09-01 22:25:45 +0800 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-09-17 21:06:36 +0200 |
| commit | 20a226652c8e5742f7228b616445756aa82d9011 (patch) | |
| tree | db9d99606fc25ae9e99406d9482d97d9e913aaad /lua | |
| parent | Update lockfile.json (#1778) (diff) | |
| download | nvim-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.lua | 9 |
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", |
