From d3b36fad967d8cf52356042aff0423cd22cc8767 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Fri, 24 Jan 2025 15:07:04 +0000 Subject: Add alpha-nvim --- lua/plugins/alpha.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/plugins/alpha.lua (limited to 'lua/plugins/alpha.lua') diff --git a/lua/plugins/alpha.lua b/lua/plugins/alpha.lua new file mode 100644 index 0000000..0a769c7 --- /dev/null +++ b/lua/plugins/alpha.lua @@ -0,0 +1,21 @@ +return { + "goolord/alpha-nvim", + dependencies = { 'nvim-tree/nvim-web-devicons' }, + config = function() + local theme = require("alpha.themes.startify") + theme.file_icons.provider = "devicons" + theme.section.header.val = { + [[ ████ ██████ █████ ██ ]], + [[ ███████████ █████  ]], + [[ █████████ ███████████████████ ███ ███████████ ]], + [[ █████████ ███ █████████████ █████ ██████████████ ]], + [[ █████████ ██████████ █████████ █████ █████ ████ █████ ]], + [[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]], + [[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]], + } + require("alpha").setup(theme.config) + end, + keys = { + { "m", ":Alpha" } + } +} -- cgit