summaryrefslogtreecommitdiff
path: root/lua/plugins/alpha.lua
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2025-01-24 15:07:04 +0000
committerBlake Romero <blake@blkrom.com>2025-01-24 15:07:04 +0000
commitd3b36fad967d8cf52356042aff0423cd22cc8767 (patch)
tree0ffbe9ffe5c8dadd0061d0cacd874ebc82d22447 /lua/plugins/alpha.lua
parented57e1a0e7dc754be1bbf8a382edaf006682dae9 (diff)
Add alpha-nvim
Diffstat (limited to 'lua/plugins/alpha.lua')
-rw-r--r--lua/plugins/alpha.lua21
1 files changed, 21 insertions, 0 deletions
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 = {
+ { "<leader>m", ":Alpha<CR>" }
+ }
+}