mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-18 01:39:00 +00:00
Will be used later to setup everything so that a language works properly in each situation.
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
|