aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorOkan Esen <hello@okanesen.com>2020-12-10 13:14:59 +0100
committerStephan Seitz <stephan.lauf@yahoo.de>2020-12-10 17:30:48 +0100
commit41ddc39f86ec926cdf5d5768b42671ed11710866 (patch)
treedd781a9549e3a55a6c81d56697dd723b9fc00046 /lua
parentAdd Erlang parser to list (diff)
downloadnvim-treesitter-41ddc39f86ec926cdf5d5768b42671ed11710866.tar
nvim-treesitter-41ddc39f86ec926cdf5d5768b42671ed11710866.tar.gz
nvim-treesitter-41ddc39f86ec926cdf5d5768b42671ed11710866.tar.bz2
nvim-treesitter-41ddc39f86ec926cdf5d5768b42671ed11710866.tar.lz
nvim-treesitter-41ddc39f86ec926cdf5d5768b42671ed11710866.tar.xz
nvim-treesitter-41ddc39f86ec926cdf5d5768b42671ed11710866.tar.zst
nvim-treesitter-41ddc39f86ec926cdf5d5768b42671ed11710866.zip
fix erlang parser installation
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index ac0b5a269..a2095cfa3 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -179,7 +179,8 @@ list.css = {
list.erlang = {
install_info = {
url = "https://github.com/AbstractMachinesLab/tree-sitter-erlang",
- files = { "src/parser.c" }
+ files = { "src/parser.c" },
+ branch = "main"
},
maintainers = { '@ostera' },
}