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,4 +1,4 @@
local Util = require("lazy.util")
local Util = require("lazy.core.util")
local Render = require("lazy.view.render")
local M = {}

View file

@ -1,5 +1,5 @@
local Config = require("lazy.config")
local Util = require("lazy.util")
local Config = require("lazy.core.config")
local Util = require("lazy.core.util")
local Manager = require("lazy.manager")
local Sections = require("lazy.view.sections")

View file

@ -1,4 +1,4 @@
local Config = require("lazy.config")
local Config = require("lazy.core.config")
---@alias TextSegment {str: string, hl?:string, extmark?:table}