diff options
| author | Brian Ryall <brianryall@fastmail.com> | 2021-03-21 13:26:33 -0400 |
|---|---|---|
| committer | Thomas Vigouroux <tomvig38@gmail.com> | 2021-03-22 07:11:10 +0100 |
| commit | fb75f019416f49f8542cc443cbf164d72c0f6e49 (patch) | |
| tree | e7ae594226d4c654538248a5127e1a88efa05fc4 /lua | |
| parent | rust: tread `,` as a punctuation delimiter (diff) | |
| download | nvim-treesitter-fb75f019416f49f8542cc443cbf164d72c0f6e49.tar nvim-treesitter-fb75f019416f49f8542cc443cbf164d72c0f6e49.tar.gz nvim-treesitter-fb75f019416f49f8542cc443cbf164d72c0f6e49.tar.bz2 nvim-treesitter-fb75f019416f49f8542cc443cbf164d72c0f6e49.tar.lz nvim-treesitter-fb75f019416f49f8542cc443cbf164d72c0f6e49.tar.xz nvim-treesitter-fb75f019416f49f8542cc443cbf164d72c0f6e49.tar.zst nvim-treesitter-fb75f019416f49f8542cc443cbf164d72c0f6e49.zip | |
add support for beancount files
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 690348ff9..d98daaee6 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -498,6 +498,15 @@ list.r = { maintainers = { "@jimhester" }, } +list.beancout = { + install_info = { + url = "https://github.com/polarmutex/tree-sitter-beancount", + files = { "src/parser.c" }, + branch = "master", + }, + maintainers = { "@polarmutex" } +} + local M = { list = list } |
