blob: ab3edf0711539f3b3d585f4c29627523fe22d438 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local api = vim.api
local parsers = require'nvim-treesitter.parsers'
local M = {}
-- This function sets up everythin needed for a given language
-- this is the main interface through the plugin
function M.setup(lang)
if parsers.has_parser(lang) then
end
end
return M
|