mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 20:10:10 -04:00
11 lines
184 B
Lua
11 lines
184 B
Lua
|
|
local api = vim.api
|
||
|
|
|
||
|
|
local M = {}
|
||
|
|
|
||
|
|
-- This function sets up everythin needed for a given language
|
||
|
|
-- this is the main interface through the plugin
|
||
|
|
function M.setup(lang)
|
||
|
|
end
|
||
|
|
|
||
|
|
return M
|