Add install.sh Add .zshrc add: nvim configs add: toggleterm, alpha update update Create README.md major changes major changes add picom updated dot files update shit
12 lines
383 B
Lua
12 lines
383 B
Lua
local status_ok, alpha = pcall(require, "alpha")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
local dashboard = require("alpha.themes.dashboard")
|
|
dashboard.section.header.val = {}
|
|
dashboard.section.buttons.val = {}
|
|
dashboard.section.footer.val = "An idiot admires complexity, a genius admires simplicity. -- Terry A. Davis"
|
|
dashboard.opts.opts.noautocmd = true
|
|
|
|
alpha.setup(dashboard.opts)
|