Feat: Add Color Configuration (#82)

This MR adds the ability to customize colors for the discussion tree
This commit is contained in:
Harrison (Harry) Cramer
2023-11-07 22:58:03 -05:00
committed by GitHub
parent 6b7e67b325
commit 9742b5b229
7 changed files with 48 additions and 0 deletions

View File

@@ -133,6 +133,13 @@ require("gitlab").setup({
success = "",
failed = "",
},
colors = {
discussion_tree = {
username = 'Keyword', -- The highlight group used, for instance 'DiagnosticSignWarn'
date = 'Comment',
chevron = 'Comment',
}
}
})
```