summaryrefslogtreecommitdiff
path: root/lua/plugins/alpha.lua
diff options
context:
space:
mode:
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>" }
+ }
+}