dotfiles/.config/nvim/lua/plugins/alpha.lua

12 lines
248 B
Lua
Raw Normal View History

2023-01-09 14:09:42 +01:00
local alpha_status, alpha = pcall(require, "alpha")
if not alpha_status then
return
end
local startify_status, alpha_startify = pcall(require, "alpha.themes.startify")
if not startify_status then
return
end
alpha.setup(alpha_startify.config)