wingyplus / tree-sitter-elixir

Tree Sitter grammar for Elixir
MIT License
11 stars 5 forks source link

Failing to install with Neovim #5

Open mhanberg opened 3 years ago

mhanberg commented 3 years ago

I'm currently trying to try out the grammar and I'm running into this compilation error when attempting to install

image

I'm using the nvim-treesitter plugin with the following config

require("nvim-treesitter.configs").setup {
  highlight = {enable = true},
  indent = {enable = true}
}

local parser_config = require("nvim-treesitter.parsers").get_parser_configs()

parser_config.elixir = {
  install_info = {
    url = "https://github.com/wingyplus/tree-sitter-elixir",
    files = {"src/parser.c"},
    branch = "main"
  }
}
dkarter commented 3 years ago

Same here (using x86_64)

image
wingyplus commented 3 years ago

Thanks for your report, I'll find time in this week to fix this. :)

wingyplus commented 3 years ago

BTW, PR is welcome. :)