mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 17:03:36 +02:00
15 lines
325 B
Lua
15 lines
325 B
Lua
local data_exists, custom_dasboard = pcall(require, "core.config")
|
|
if data_exists then
|
|
local model = custom_dasboard.model
|
|
if model ~= nil then
|
|
if model == 1 then
|
|
require("user.startify")
|
|
else
|
|
require("user.dashboard")
|
|
end
|
|
else
|
|
require("user.startify")
|
|
end
|
|
else
|
|
require("user.startify")
|
|
end
|