aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorPau Ruiz Safont <unduthegun@gmail.com>2020-09-28 22:59:11 +0100
committerStephan Seitz <stephan.lauf@yahoo.de>2020-10-04 14:33:29 +0200
commitf1c272676b0348c8c0bdf40b2b6a8e4be39e5756 (patch)
tree1167a1886afd9754e2b0bfc66eccf1938a1eabea /lua
parentAdd "External modules" section to README (diff)
downloadnvim-treesitter-f1c272676b0348c8c0bdf40b2b6a8e4be39e5756.tar
nvim-treesitter-f1c272676b0348c8c0bdf40b2b6a8e4be39e5756.tar.gz
nvim-treesitter-f1c272676b0348c8c0bdf40b2b6a8e4be39e5756.tar.bz2
nvim-treesitter-f1c272676b0348c8c0bdf40b2b6a8e4be39e5756.tar.lz
nvim-treesitter-f1c272676b0348c8c0bdf40b2b6a8e4be39e5756.tar.xz
nvim-treesitter-f1c272676b0348c8c0bdf40b2b6a8e4be39e5756.tar.zst
nvim-treesitter-f1c272676b0348c8c0bdf40b2b6a8e4be39e5756.zip
feat: add ocamllex parser and highlights
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 6b74faaa8..f0177e3e7 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -145,6 +145,14 @@ list.ocaml_interface = {
filetype = 'ocamlinterface'
}
+list.ocamllex = {
+ install_info = {
+ url = "https://github.com/atom-ocaml/tree-sitter-ocamllex",
+ files = { "src/parser.c", "src/scanner.cc" },
+ },
+ maintainers = {'@undu'},
+}
+
list.swift = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-swift",