mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 04:22:41 +01:00
22 lines
452 B
Lua
22 lines
452 B
Lua
|
local configs = require "nvim-treesitter.configs"
|
||
|
local parsers = require "nvim-treesitter.parsers"
|
||
|
|
||
|
local parser_config = parsers.get_parser_configs()
|
||
|
|
||
|
parser_config.haxe = {
|
||
|
install_info = {
|
||
|
url = "https://github.com/vantreeseba/tree-sitter-haxe",
|
||
|
files = {"src/parser.c"},
|
||
|
branch = "main"
|
||
|
},
|
||
|
filetype = "haxe"
|
||
|
}
|
||
|
|
||
|
configs.setup {
|
||
|
ensure_installed = { "haxe" },
|
||
|
highlight = {
|
||
|
enable = true
|
||
|
}
|
||
|
}
|
||
|
|