diff options
| author | Thomas Vigouroux <tomvig38@gmail.com> | 2021-04-18 09:57:02 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-09-17 21:06:36 +0200 |
| commit | 1877e03bfae876debf028a7605b9cc8d7c6fed86 (patch) | |
| tree | 01c38bbb969910c07da22299f3dbe605d6aa9fbb /lua | |
| parent | Lua: highlight uppercase variables as constants (#1690) (diff) | |
| download | nvim-treesitter-1877e03bfae876debf028a7605b9cc8d7c6fed86.tar nvim-treesitter-1877e03bfae876debf028a7605b9cc8d7c6fed86.tar.gz nvim-treesitter-1877e03bfae876debf028a7605b9cc8d7c6fed86.tar.bz2 nvim-treesitter-1877e03bfae876debf028a7605b9cc8d7c6fed86.tar.lz nvim-treesitter-1877e03bfae876debf028a7605b9cc8d7c6fed86.tar.xz nvim-treesitter-1877e03bfae876debf028a7605b9cc8d7c6fed86.tar.zst nvim-treesitter-1877e03bfae876debf028a7605b9cc8d7c6fed86.zip | |
feat: add support for vim
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 eef3262bb..9803f241e 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -656,6 +656,15 @@ list.cmake = { maintainers = { "@uyha" }, } +list.vim = { + install_info = { + url = "https://github.com/vigoux/tree-sitter-viml", + files = { "src/parser.c", "src/scanner.c" }, + }, + filetype = "vim", + maintainers = { "@vigoux" }, +} + local M = { list = list, } |
