-- https://github.com/goolord/alpha-nvim local status_ok, alpha = pcall(require, "alpha") if not status_ok then return end local dashboard = require("alpha.themes.dashboard") dashboard.section.header.val = { [[🟨🟨🟨🟨🟨🟨🟨🟨]], [[🟨🟨🟨🟨🟨🟨🟨🟨]], [[🟨🟨🟨 🐍 🟨🟨🟨]], [[🟨🟨🌿🌿🌿🌿🟨🟨]], [[🟨🟨🟨🟨🟨🟨🟨🟨]], [[DONT TREAD ON ME]], } dashboard.section.buttons.val = { dashboard.button("f", " Find Files", ":FzfLua files"), dashboard.button("e", "ο…› New File", ":ene startinsert"), dashboard.button("p", " Find Project", ":Telescope projects"), dashboard.button("r", " Recently Used Files", ":FzfLua oldfiles"), dashboard.button("t", "οžƒ Find Text", ":FzfLua live_grep"), dashboard.button("b", "ο’ˆ Browser Bookmarks", ":Telescope bookmarks"), dashboard.button("c", "ξ˜• Configuration", ":e ~/.config/nvim/init.lua"), dashboard.button("u", "ο•© Update Plugins", ":PackerUpdate"), 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)