From 5f242413743f915b715fd05cf3891a745be257d1 Mon Sep 17 00:00:00 2001 From: Zach Zolton Date: Thu, 12 Sep 2024 15:24:54 -0400 Subject: [PATCH] Further configure Treesitter Context display --- lua/custom/plugins/nvim_treesitter_context.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins/nvim_treesitter_context.lua b/lua/custom/plugins/nvim_treesitter_context.lua index 70f7f5af..d101d744 100644 --- a/lua/custom/plugins/nvim_treesitter_context.lua +++ b/lua/custom/plugins/nvim_treesitter_context.lua @@ -9,7 +9,7 @@ return { line_numbers = true, multiline_threshold = 20, -- Maximum number of lines to show for a single context trim_scope = 'outer', -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer' - mode = 'cursor', -- Line used to calculate context. Choices: 'cursor', 'topline' + mode = 'topline', -- Line used to calculate context. Choices: 'cursor', 'topline' -- Separator between context and content. Should be a single character string, like '-'. -- When separator is set, the context will only show up when there are at least 2 lines above cursorline. separator = nil,