mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
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:
parent
00f871ab51
commit
5897d72b07
1 changed files with 10 additions and 0 deletions
10
lua/nvim-treesitter.lua
Normal file
10
lua/nvim-treesitter.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue