From 0bb4b158a27da48e78b541bc2fe7d23a30545f22 Mon Sep 17 00:00:00 2001 From: Olaf Alexander Date: Thu, 31 Oct 2024 07:40:15 -0500 Subject: [PATCH] chore(neovim): Add alpha plugin --- dot-config/nvim/lua/plugins/alpha.lua | 31 +++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 dot-config/nvim/lua/plugins/alpha.lua diff --git a/dot-config/nvim/lua/plugins/alpha.lua b/dot-config/nvim/lua/plugins/alpha.lua new file mode 100644 index 0000000..93a8bff --- /dev/null +++ b/dot-config/nvim/lua/plugins/alpha.lua @@ -0,0 +1,31 @@ +return { + "goolord/alpha-nvim", + dependencies = { + "nvim-tree/nvim-web-devicons", + }, + + config = function() + local alpha = require("alpha") + local dashboard = require("alpha.themes.startify") + + dashboard.section.header.val = { + [[ ]], + [[ ]], + [[ ]], + [[ ]], + [[  ]], + [[ ████ ██████ █████ ██ ]], + [[ ███████████ █████  ]], + [[ █████████ ███████████████████ ███ ███████████ ]], + [[ █████████ ███ █████████████ █████ ██████████████ ]], + [[ █████████ ██████████ █████████ █████ █████ ████ █████ ]], + [[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]], + [[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]], + [[ ]], + [[ ]], + [[ ]], + } + + alpha.setup(dashboard.opts) + end +}