mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
11 lines
192 B
Lua
11 lines
192 B
Lua
local M = {}
|
|
|
|
function M.setup(...)
|
|
require('nvim-treesitter.config').setup(...)
|
|
end
|
|
|
|
function M.indentexpr()
|
|
return require('nvim-treesitter.indent').get_indent(vim.v.lnum)
|
|
end
|
|
|
|
return M
|