11 lines
262 B
Lua
11 lines
262 B
Lua
local function config()
|
|
local treesitter_context = require('treesitter-context')
|
|
-- line number highlight group: TreesitterContextLineNumber
|
|
treesitter_context.setup({
|
|
enable = false, -- see keybinds.lua to toggle
|
|
mode = 'topline',
|
|
})
|
|
end
|
|
|
|
return config
|