-- https://github.com/goolord/alpha-nvim local alpha = require("alpha") local dashboard = require("alpha.themes.dashboard") dashboard.section.header.val = { [[🟨🟨🟨🟨🟨🟨🟨🟨]], [[🟨🟨🟨🟨🟨🟨🟨🟨]], [[🟨🟨🟨 🐍 🟨🟨🟨]], [[🟨🟨🌿🌿🌿🌿🟨🟨]], [[🟨🟨🟨🟨🟨🟨🟨🟨]], [[DONT TREAD ON ME]], } dashboard.section.buttons.val = { dashboard.button("f", " Find Files", ":Telescope find_files"), dashboard.button("e", "ο…› New File", ":ene startinsert"), 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("b", "ο’ˆ Browser Bookmarks", ":Telescope bookmarks"), dashboard.button("c", "ξ˜• Configuration", ":e ~/.config/nvim/init.lua"), dashboard.button("u", "ο•© Update Plugins", ":Lazy sync"), dashboard.button("m", "ο•© Mason (LSP, DAP, Linter, Formatter)", ":Mason"), dashboard.button("q", "ο™™ Quit Neovim", ":qa"), } dashboard.section.footer.opts.hl = "Type" dashboard.section.header.opts.hl = "Include" dashboard.section.buttons.opts.hl = "Keyword" dashboard.opts.opts.noautocmd = true alpha.setup(dashboard.opts)