-- https://github.com/goolord/alpha-nvim local alpha = require("alpha") local dashboard = require("alpha.themes.dashboard") dashboard.section.header.val = { " ▖ ", "┌─╮╭─╮╭─╮▖ ▖▖▄▄▗▄ ", "│ │├─┘│ │▝▖▞ ▌▌ ▌ ▌", "╵ ╵╰─╯╰─╯ ▝ ▘▘ ▘ ▘", } dashboard.section.buttons.val = { dashboard.button("e", " New File", ":ene startinsert"), dashboard.button("f", " Find Files", ":Telescope find_files"), dashboard.button("p", " Find Project", ":Telescope projects"), dashboard.button("r", " Recently Used Files", ":Telescope oldfiles"), dashboard.button("t", " Find Text", ":Telescope grep_string"), dashboard.button("u", " Update Plugins", ":Lazy sync"), dashboard.button("m", " Mason (LSP, DAP, Linter, Formatter)", ":Mason"), dashboard.button("q", " Quit Neovim", ":qa"), dashboard.padding, } dashboard.section.header.opts.hl = "String" dashboard.section.buttons.opts.hl = "Keyword" dashboard.section.footer.opts.hl = "String" dashboard.opts.opts.noautocmd = true alpha.setup(dashboard.opts)