blob: fafb0bc7ec8d3edeacd09b72169360ae00d808db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
local status_ok, indent = pcall(require, "auto-indent")
if not status_ok then
return
end
indent.setup {
indentexpr = function(lnum)
return require("nvim-treesitter.indent").get_indent(lnum)
end
}
|