Skip to content

Commit

Permalink
feat(plugins): support avante.nvim (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarnphm authored Aug 27, 2024
1 parent 5d2e054 commit 199a2ab
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ term.foreground
| Plugin | Key |
| ------------------------------------------------------------------------------- | -------------------- |
| [aerial.nvim](https://github.com/stevearc/aerial.nvim) | `aerial` |
| [avante.nvim](https://github.com/yetone/avante.nvim) | `avante` |
| [beacon.nvim](https://github.com/DanilaMihailov/beacon.nvim) | `beacon` |
| [bufferline.nvim](https://github.com/akinsho/bufferline.nvim) | `bufferline` |
| [dashboard-nvim](https://github.com/glepnir/dashboard-nvim) | `dashboard-nvim` |
Expand Down
13 changes: 13 additions & 0 deletions lua/astrotheme/groups/plugins/avante.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---@param c AstroThemePalette
return function(c)
return {
AvanteTitle = { fg = c.ui.title, bg = c.ui.base },
AvanteReversedTitle = { fg = c.ui.base },
AvanteSubtitle = { fg = c.ui.green, bg = c.ui.base },
AvanteReversedSubtitle = { fg = c.ui.base },
AvanteThirdTitle = { fg = c.ui.yellow, bg = c.ui.base },
AvanteReversedThirdTitle = { fg = c.ui.base },
AvanteConflictCurrent = "DiffText",
AvanteConflictIncoming = "DiffAdd",
}
end
1 change: 1 addition & 0 deletions lua/astrotheme/groups/plugins/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
return {
["aerial.nvim"] = "aerial",
["avante.nvim"] = "avante",
["beacon.nvim"] = "beacon",
["bufferline.nvim"] = "bufferline",
["dashboard-nvim"] = "dashboard-nvim",
Expand Down

0 comments on commit 199a2ab

Please sign in to comment.