nvim-kickstart/lua/custom/startup.lua

11 lines
170 B
Lua

-- import comment plugin safely
local setup, startup = pcall(require, "startup")
if not setup then
return
end
-- enable startup
startup.setup({
theme = "dashboard"
})