nvim-config/lua/configs/treesitter-context.lua

11 lines
262 B
Lua
Raw Normal View History

2024-03-20 00:47:26 +00:00
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