You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
my-nvim-lua/after/plugin/treesitter.lua

14 lines
282 B
Lua

if not pcall(require, "nvim-treesitter") then
return
end
local list = require("nvim-treesitter.parsers").get_parser_configs()
list.sql = {
install_info = {
url = "https://github.com/DerekStride/tree-sitter-sql",
files = { "src/parser.c" },
branch = "main",
},
}