feat: add empty setup function

Will be used later to setup everything so that a language works properly
in each situation.
This commit is contained in:
Thomas Vigouroux 2020-04-18 19:32:51 +02:00
parent 00f871ab51
commit 5897d72b07

10
lua/nvim-treesitter.lua Normal file
View file

@ -0,0 +1,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