summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorThomas Vigouroux <tomvig38@gmail.com>2020-04-18 19:32:51 +0200
committerThomas Vigouroux <tomvig38@gmail.com>2020-04-18 19:32:51 +0200
commit5897d72b075991e4de5876c918be186d4551cf12 (patch)
tree3a749faa5b7324a2af23108dce560540112385d2 /lua
parent00f871ab51e6d094c0cd83dc4668dbe7ec047d04 (diff)
feat: add empty setup function
Will be used later to setup everything so that a language works properly in each situation.
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter.lua b/lua/nvim-treesitter.lua
new file mode 100644
index 00000000..cbed117d
--- /dev/null
+++ b/lua/nvim-treesitter.lua
@@ -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