diff options
author | LostNeophyte <[email protected]> | 2022-11-29 08:50:24 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-29 08:50:24 +0100 |
commit | f5454fb86087f9f7372f3be7af797d9dc0297d6e (patch) | |
tree | e73190e39b1d7710774278bd9d6ee6e44eb67108 /lua/lvim/core/alpha.lua | |
parent | 84ce0803e119a961106ddd88896366ad58989167 (diff) |
feat(alpha): allow configuring highlight groups (#3532)
* fix(alpha): make highlights overridable
Co-authored-by: CPea <[email protected]>
* feat: make opts overridable
* refactor: add default autostart to opts
* feat: default_button_opts
* Apply suggestions from code review
Co-authored-by: kylo252 <[email protected]>
Co-authored-by: CPea <[email protected]>
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'lua/lvim/core/alpha.lua')
-rw-r--r-- | lua/lvim/core/alpha.lua | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/lua/lvim/core/alpha.lua b/lua/lvim/core/alpha.lua index 58b787ed..8d69ebbc 100644 --- a/lua/lvim/core/alpha.lua +++ b/lua/lvim/core/alpha.lua @@ -4,8 +4,16 @@ function M.config() local lvim_dashboard = require "lvim.core.alpha.dashboard" local lvim_startify = require "lvim.core.alpha.startify" lvim.builtin.alpha = { - dashboard = { config = {}, section = lvim_dashboard.get_sections() }, - startify = { config = {}, section = lvim_startify.get_sections() }, + dashboard = { + config = {}, + section = lvim_dashboard.get_sections(), + opts = { autostart = true }, + }, + startify = { + config = {}, + section = lvim_startify.get_sections(), + opts = { autostart = true }, + }, active = true, mode = "dashboard", } @@ -23,6 +31,10 @@ local function resolve_buttons(theme_name, entries) local button_element = selected_theme.button(entry[1], entry[2], entry[3]) -- this became necessary after recent changes in alpha.nvim (06ade3a20ca9e79a7038b98d05a23d7b6c016174) button_element.on_press = on_press + + button_element.opts = + vim.tbl_extend("force", button_element.opts, entry[4] or lvim.builtin.alpha[theme_name].section.buttons.opts) + table.insert(val, button_element) end return val @@ -41,8 +53,13 @@ local function resolve_config(theme_name) resolved_section[name][k] = v end end + + resolved_section[name].opts = el.opts or {} end + local opts = lvim.builtin.alpha[theme_name].opts or {} + selected_theme.config.opts = vim.tbl_extend("force", selected_theme.config.opts, opts) + return selected_theme.config end |