aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-treesitter.lua
blob: cbed117d254127f671244af67de77af7cce4d815 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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