nvim: remove treesitter-context

This commit is contained in:
Primrose 2025-06-15 08:23:49 +02:00
parent 7b39e0b742
commit c6c64b5851
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 0 additions and 14 deletions

View file

@ -42,14 +42,3 @@ require("nvim-treesitter.configs").setup {
},
},
}
require("treesitter-context").setup {
enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
max_lines = 2, -- How many lines the window should span. Values <= 0 mean no limit.
min_window_height = 0, -- Minimum editor window height to enable context. Values <= 0 mean no limit.
line_numbers = true,
multiline_threshold = 20, -- Maximum number of lines to collapse for a single context line
trim_scope = "outer", -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer'
mode = "topline", -- Line used to calculate context. Choices: 'cursor', 'topline'
zindex = 20, -- The Z-index of the context window
}