diff options
| author | Lucas Crownover <lcrown@uoregon.edu> | 2021-08-27 07:30:22 -0700 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-09-21 01:08:32 +0200 |
| commit | c99389fcf55c16126a6aed152711016db802f04d (patch) | |
| tree | b1d73e9375ffedeb23ed652e7340c46a083b0beb /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-c99389fcf55c16126a6aed152711016db802f04d.tar nvim-treesitter-c99389fcf55c16126a6aed152711016db802f04d.tar.gz nvim-treesitter-c99389fcf55c16126a6aed152711016db802f04d.tar.bz2 nvim-treesitter-c99389fcf55c16126a6aed152711016db802f04d.tar.lz nvim-treesitter-c99389fcf55c16126a6aed152711016db802f04d.tar.xz nvim-treesitter-c99389fcf55c16126a6aed152711016db802f04d.tar.zst nvim-treesitter-c99389fcf55c16126a6aed152711016db802f04d.zip | |
Adding perl parser
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 f526fbb1d..3fd917128 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -178,6 +178,15 @@ list.ruby = { maintainers = { "@TravonteD" }, } +list.perl = { + install_info = { + url = "https://github.com/lcrownover/tree-sitter-perl", + files = { "src/parser.c", "src/scanner.cc" }, + generate_requires_npm = true, + }, + maintainers = { "@ganezdragon" }, +} + list.bash = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-bash", |
