From c74ad233704f0a85e0e062f627f21f560e90e258 Mon Sep 17 00:00:00 2001 From: AstroNvim Bot Date: Thu, 14 Nov 2024 17:58:40 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/astroui.txt | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/doc/astroui.txt b/doc/astroui.txt index 8698e2c..398d83b 100644 --- a/doc/astroui.txt +++ b/doc/astroui.txt @@ -1,4 +1,4 @@ -*astroui.txt* For Neovim >= 0.9.0 Last change: 2024 September 19 +*astroui.txt* For Neovim >= 0.9.0 Last change: 2024 November 14 ============================================================================== Table of Contents *astroui-table-of-contents* @@ -144,6 +144,22 @@ are descriptions of the options and some example usages: }, }, }, + -- Configure theming of Lazygit, set to `false` to disable + lazygit = { + theme_path = vim.fs.normalize(vim.fn.stdpath "cache" .. "/lazygit-theme.yml"), + theme = { + [241] = { fg = "Special" }, + activeBorderColor = { fg = "MatchParen", bold = true }, + cherryPickedCommitBgColor = { fg = "Identifier" }, + cherryPickedCommitFgColor = { fg = "Function" }, + defaultFgColor = { fg = "Normal" }, + inactiveBorderColor = { fg = "FloatBorder" }, + optionsTextColor = { fg = "Function" }, + searchingActiveBorderColor = { fg = "MatchParen", bold = true }, + selectedLineBgColor = { bg = "Visual" }, + unstagedChangesColor = { fg = "DiagnosticError" }, + }, + }, } <