From 16ee0e93dfc52e35ee7c9cf45e5ebf116958edb7 Mon Sep 17 00:00:00 2001 From: Patrick Kage Date: Sat, 9 Nov 2024 19:28:53 -0500 Subject: [PATCH] feat: integration for yetone/avante.nvim (#362) * add integration for yetone/avante.nvim * code cleanup --- lua/base46/integrations/avante.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/base46/integrations/avante.lua diff --git a/lua/base46/integrations/avante.lua b/lua/base46/integrations/avante.lua new file mode 100644 index 00000000..1b94447b --- /dev/null +++ b/lua/base46/integrations/avante.lua @@ -0,0 +1,19 @@ +local colors = require("base46").get_theme_tb "base_30" + +return { + AvanteTitle = {fg = colors.black2, bg = colors.vibrant_green}, + AvanteReversedTitle = {fg = colors.vibrant_green, bg = colors.black2}, + AvanteSubtitle = {fg = colors.black2, bg = colors.nord_blue}, + AvanteReversedSubtitle = {fg = colors.nord_blue, bg = colors.black2}, + AvanteThirdTitle = {bg = colors.white, fg=colors.black2}, + AvanteReversedThirdTitle = {fg = colors.white}, + + -- should be set automatically by other color groups + + -- AvanteConflictCurrent = {fg = '', bg = ''}, + -- AvanteConflictCurrentLabel = {fg = '', bg = ''}, + -- AvanteConflictIncoming = {fg = '', bg = ''}, + -- AvanteConflictIncomingLabel = {fg = '', bg = ''}, + -- AvantePopupHint = {fg = '', bg = ''}, + -- AvanteInlineHint = {fg = '', bg = ''} +}