feat: more config options

This commit is contained in:
Barrett Ruth 2026-02-01 19:35:19 -05:00
parent d310a9ee6e
commit e5ebf3b3ec
4 changed files with 113 additions and 7 deletions

View file

@ -32,6 +32,14 @@ SETUP *fugitive-ts-setup*
-- Custom filename -> language mappings (optional)
languages = {},
-- Languages to skip treesitter highlighting for (default: {})
-- Uses treesitter language names, e.g. {"markdown", "vimdoc"}
disabled_languages = {},
-- Highlight context in hunk headers (default: true)
-- e.g. "@@ -10,3 +10,4 @@ function foo()" -> "function foo()" gets highlighted
highlight_headers = true,
-- Debounce delay in ms (default: 50)
debounce_ms = 50,