Skip to content

Commit

Permalink
feat: add mini.start support
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Lamia authored and mehalter committed Oct 11, 2023
1 parent cd6dc12 commit 6490250
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/astrotheme/groups/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ return {
["nvim-web-devicons"] = "nvim-web-devicons",
["nvim-window-picker"] = "nvim-window-picker",
["mason.nvim"] = "mason",
["mini.starter"] = "ministarter",
["rainbow-delimiters.nvim"] = "rainbow-delimiters",
["spotlight.nvim"] = "spotlight",
["symbols-outline.nvim"] = "symbols-outline",
Expand Down
15 changes: 15 additions & 0 deletions lua/astrotheme/groups/plugins/ministarter.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
local function callback()
return {
MiniStarterItem = { fg = C.ui.text },
MiniStarterQuery = { fg = C.ui.green, bold = true },
MiniStarterHeader = { fg = C.ui.accent, bg = C.none },
MiniStarterFooter = { fg = C.ui.accent, bg = C.none },
MiniStarterCurrent = { fg = C.ui.text_active, underline = true, bold = true },
MiniStarterSection = { fg = C.ui.accent, bold = true },
MiniStarterInactive = { fg = C.ui.text_inactive },
MiniStarterItemBullet = { fg = C.ui.accent },
MiniStarterItemPrefix = { fg = C.ui.yellow },
}
end

return callback

0 comments on commit 6490250

Please sign in to comment.