mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
13 lines
323 B
Lua
13 lines
323 B
Lua
local api = vim.api
|
|
local install = require'nvim-treesitter.install'
|
|
local utils = require'nvim-treesitter.utils'
|
|
local highlight = require'nvim-treesitter.highlight'
|
|
|
|
local M = {}
|
|
|
|
function M.setup()
|
|
utils.setup_commands('install', install.commands)
|
|
utils.setup_commands('highlight', highlight.commands)
|
|
end
|
|
|
|
return M
|