diff --git a/lua/nightfox/config.lua b/lua/nightfox/config.lua index 357bd62c..cb24ca24 100644 --- a/lua/nightfox/config.lua +++ b/lua/nightfox/config.lua @@ -61,6 +61,7 @@ local defaults = { M.options = collect.deep_copy(defaults) M.module_names = { + "alpha", "aerial", "barbar", "cmp", diff --git a/lua/nightfox/group/modules/alpha.lua b/lua/nightfox/group/modules/alpha.lua new file mode 100644 index 00000000..512d1dd1 --- /dev/null +++ b/lua/nightfox/group/modules/alpha.lua @@ -0,0 +1,16 @@ +-- https://github.com/goolord/alpha-nvim + +local M = {} + +function M.get(spec, _, _) + -- stylua: ignore + return { + AlphaShortcut = { fg = spec.palette.orange.base }, + AlphaHeader = { fg = spec.palette.blue:harsh() }, + AlphaHeaderLabel = { fg = spec.palette.orange.base }, + AlphaFooter = { fg = spec.palette.blue.base }, + AlphaButtons = { fg = spec.palette.cyan.base }, + } +end + +return M diff --git a/readme.md b/readme.md index 184396f0..980844e0 100644 --- a/readme.md +++ b/readme.md @@ -508,6 +508,7 @@ There are a few things to note: ## Supported Plugins +- [alpha-nvim](https://github.com/goolord/alpha-nvim) - [aerial.nvim](https://github.com/stevearc/aerial.nvim) - [barbar.nvim](https://github.com/romgrk/barbar.nvim) - [nvim-cmp](https://github.com/hrsh7th/nvim-cmp) diff --git a/usage.md b/usage.md index 5599935a..b2486427 100644 --- a/usage.md +++ b/usage.md @@ -389,6 +389,7 @@ to determine if the module is applied. Current list of modules are: +- alpha - aerial - barbar - cmp