From 8423fc5ed5ddcf78713fc5451332dfd1aa3a0a49 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 13 Jan 2023 19:15:24 +0100 Subject: [PATCH] feat(nvim): change color of Alpha dashboard header --- nvim/after/plugin/alpha.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nvim/after/plugin/alpha.lua b/nvim/after/plugin/alpha.lua index 4914854..7e5eb4c 100644 --- a/nvim/after/plugin/alpha.lua +++ b/nvim/after/plugin/alpha.lua @@ -18,11 +18,12 @@ dashboard.section.buttons.val = { dashboard.button("u", " Update Plugins", ":Lazy sync"), dashboard.button("m", " Mason (LSP, DAP, Linter, Formatter)", ":Mason"), dashboard.button("q", " Quit Neovim", ":qa"), + dashboard.padding, } -dashboard.section.footer.opts.hl = "Type" -dashboard.section.header.opts.hl = "Include" +dashboard.section.header.opts.hl = "String" dashboard.section.buttons.opts.hl = "Keyword" +dashboard.section.footer.opts.hl = "String" dashboard.opts.opts.noautocmd = true alpha.setup(dashboard.opts)