summaryrefslogtreecommitdiffstats
path: root/after/plugin/tsc.lua
blob: 70131e7636b7161b5786ae094dfe6d5676450f5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
local status_ok, tc = pcall(require, "treesitter-context")
if not status_ok then
	return
end

tc.setup{
  enable = true,
  line_numbers = true,
  separator = '-',
}