11 lines
165 B
Lua
11 lines
165 B
Lua
local status_ok, tc = pcall(require, "treesitter-context")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
tc.setup{
|
|
enable = true,
|
|
line_numbers = true,
|
|
separator = '-',
|
|
}
|