12 lines
236 B
Lua
12 lines
236 B
Lua
local config = function()
|
|
local tree_sitter_context = require("treesitter-context")
|
|
tree_sitter_context.setup({
|
|
multiline_threshold = 1,
|
|
})
|
|
end
|
|
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter-context",
|
|
lazy = false,
|
|
opts = config,
|
|
}
|