diff options
author | LostNeophyte <[email protected]> | 2023-01-19 13:43:52 +0100 |
---|---|---|
committer | opalmay <[email protected]> | 2023-01-20 23:52:10 +0200 |
commit | b90c9ee7b78a4311a43e5690876413371f7368d7 (patch) | |
tree | ff6cfa84a489799e36cf94a9ffdc1e8fe5d11cec /lua/lvim/core/alpha.lua | |
parent | 83f9271047d61e62b70b93ab99d2c8d37f7eab04 (diff) |
move lazy utils to modules.lua
Diffstat (limited to 'lua/lvim/core/alpha.lua')
-rw-r--r-- | lua/lvim/core/alpha.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lvim/core/alpha.lua b/lua/lvim/core/alpha.lua index 19d7899a..42159d70 100644 --- a/lua/lvim/core/alpha.lua +++ b/lua/lvim/core/alpha.lua @@ -1,9 +1,9 @@ local M = {} function M.config() - local utils = require "lvim.utils" - local lvim_dashboard = utils.lazy_set("lvim.core.alpha.dashboard", "get_sections") - local lvim_startify = utils.lazy_set("lvim.core.alpha.startify", "get_sections") + local lazy_set = require("lvim.utils.modules").lazy_set + local lvim_dashboard = lazy_set("lvim.core.alpha.dashboard", "get_sections") + local lvim_startify = lazy_set("lvim.core.alpha.startify", "get_sections") lvim.builtin.alpha = { dashboard = { config = {}, |