Skip to content

Commit

Permalink
feat: integration for yetone/avante.nvim (#362)
Browse files Browse the repository at this point in the history
* add integration for yetone/avante.nvim

* code cleanup
  • Loading branch information
pkage authored Nov 10, 2024
1 parent c58d8a7 commit 16ee0e9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lua/base46/integrations/avante.lua
Original file line number Diff line number Diff line change
@@ -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 = ''}
}

0 comments on commit 16ee0e9

Please sign in to comment.