diff options
Diffstat (limited to 'lua/nvim-treesitter.lua')
| -rw-r--r-- | lua/nvim-treesitter.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter.lua b/lua/nvim-treesitter.lua new file mode 100644 index 000000000..cbed117d2 --- /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 |
