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

16 lines
271 B
Lua
Raw Normal View History

local M = {}
function M.config()
local present, treesitter_context = pcall(require, 'treesitter-context')
if not present then
return
end
2024-01-09 21:37:37 +00:00
-- line number highlight group: TreesitterContextLineNumber
2023-01-10 18:21:09 +00:00
treesitter_context.setup({
mode = 'topline',
})
end
return M