aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2021-04-04 09:45:45 +0200
committerStephan Seitz <stephan.lauf@yahoo.de>2021-05-17 20:45:31 +0200
commite197736061378b5ccc510241ebec0bb765d69fa7 (patch)
treee73ebaccda89fca2fefd575160a6e867548fb7e3 /lua
parenthighlights(latex): use any-of? (diff)
downloadnvim-treesitter-e197736061378b5ccc510241ebec0bb765d69fa7.tar
nvim-treesitter-e197736061378b5ccc510241ebec0bb765d69fa7.tar.gz
nvim-treesitter-e197736061378b5ccc510241ebec0bb765d69fa7.tar.bz2
nvim-treesitter-e197736061378b5ccc510241ebec0bb765d69fa7.tar.lz
nvim-treesitter-e197736061378b5ccc510241ebec0bb765d69fa7.tar.xz
nvim-treesitter-e197736061378b5ccc510241ebec0bb765d69fa7.tar.zst
nvim-treesitter-e197736061378b5ccc510241ebec0bb765d69fa7.zip
Add support for Common Lisp
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index c2572eba6..d5aec787f 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -54,6 +54,15 @@ list.clojure = {
maintainers = {"@sogaiu"},
}
+list.commonlisp = {
+ install_info = {
+ url = "~/projects/tree-sitter-commonlisp",
+ files = { "src/parser.c" },
+ },
+ filetype = 'lisp',
+ maintainers = {"@theHamsta"},
+}
+
list.cpp = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-cpp",