nerd stuff
1return {
2 "goolord/alpha-nvim",
3 dependencies = {
4 "nvim-tree/nvim-web-devicons",
5 },
6
7 config = function()
8 local alpha = require("alpha")
9 local dashboard = require("alpha.themes.dashboard")
10
11 dashboard.section.header.val = {
12 [[ ]],
13 [[ ]],
14 [[ ]],
15 [[ ]],
16 [[ ]],
17 [[ ████ ██████ █████ ██ ]],
18 [[ ███████████ █████ ]],
19 [[ █████████ ███████████████████ ███ ███████████ ]],
20 [[ █████████ ███ █████████████ █████ ██████████████ ]],
21 [[ █████████ ██████████ █████████ █████ █████ ████ █████ ]],
22 [[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]],
23 [[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]],
24 [[ ]],
25 [[ ]],
26 [[ ]],
27 }
28 dashboard.section.buttons.val = {
29 dashboard.button("SPC f o", " > Filesystem"),
30 dashboard.button("SPC f f", " > Find File"),
31 dashboard.button("SPC f r", " > Find Recents"),
32 dashboard.button("SPC f t", " > Find Todo"),
33 dashboard.button("SPC f k", " > Keymaps"),
34 dashboard.button(":q", " > Quit"),
35 }
36
37 alpha.setup(dashboard.opts)
38 end,
39}