refactor: move core modules needed for loading under core

This commit is contained in:
Folke Lemaitre 2022-11-22 21:28:08 +01:00
parent 3218c2d9ec
commit fca984b18c
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
12 changed files with 27 additions and 32 deletions

View file

@ -1,7 +1,7 @@
local Config = require("lazy.config")
local Config = require("lazy.core.config")
local Task = require("lazy.task")
local Runner = require("lazy.runner")
local Util = require("lazy.util")
local Util = require("lazy.core.util")
local M = {}