@@ -34,7 +34,7 @@ local M = {}
34
34
--- @field dir string
35
35
--- @field dep ? boolean True if this plugin is only in the spec as a dependency
36
36
--- @field enabled ? boolean | (fun (): boolean )
37
- --- @field opt ? boolean
37
+ --- @field lazy ? boolean
38
38
--- @field dependencies ? string[]
39
39
--- @field _ LazyPluginState
40
40
@@ -145,52 +145,46 @@ function Spec:merge(old, new)
145
145
end
146
146
147
147
function M .update_state ()
148
- --- @type table< " opt" | " start" , table<string,FileType>>
149
- local installed = { opt = {}, start = {} }
150
- for opt , packs in pairs (installed ) do
151
- Util .ls (Config .options .packpath .. " /" .. opt , function (_ , name , type )
152
- if type == " directory" or type == " link" then
153
- packs [name ] = type
154
- end
155
- end )
156
- end
148
+ --- @type table<string,FileType>
149
+ local installed = {}
150
+ Util .ls (Config .options .packpath .. " /opt" , function (_ , name , type )
151
+ if type == " directory" or type == " link" then
152
+ installed [name ] = type
153
+ end
154
+ end )
157
155
158
156
for _ , plugin in pairs (Config .plugins ) do
159
157
plugin ._ = plugin ._ or {}
160
- if plugin .opt == nil then
161
- local opt = plugin .dep
162
- or Config .options .defaults .opt
158
+ if plugin .lazy == nil then
159
+ local lazy = plugin .dep
160
+ or Config .options .defaults .lazy
163
161
or plugin .module
164
162
or plugin .event
165
163
or plugin .keys
166
164
or plugin .ft
167
165
or plugin .cmd
168
- plugin .opt = opt and true or false
166
+ plugin .lazy = lazy and true or false
169
167
end
170
- local opt = plugin .opt and " opt" or " start"
171
- plugin .dir = Config .options .packpath .. " /" .. opt .. " /" .. plugin .name
168
+ plugin .dir = Config .options .packpath .. " /opt/" .. plugin .name
172
169
plugin ._ .is_local = plugin .uri :sub (1 , 4 ) ~= " http" and plugin .uri :sub (1 , 3 ) ~= " git"
173
- plugin ._ .is_symlink = installed [opt ][ plugin .name ] == " link"
174
- plugin ._ .installed = installed [opt ][ plugin .name ] ~= nil
170
+ plugin ._ .is_symlink = installed [plugin .name ] == " link"
171
+ plugin ._ .installed = installed [plugin .name ] ~= nil
175
172
if plugin ._ .is_local == plugin ._ .is_symlink then
176
- installed [opt ][ plugin .name ] = nil
173
+ installed [plugin .name ] = nil
177
174
end
178
175
end
179
176
180
177
Config .to_clean = {}
181
- for opt , packs in pairs (installed ) do
182
- for pack , dir_type in pairs (packs ) do
183
- table.insert (Config .to_clean , {
184
- name = pack ,
185
- dir = Config .options .packpath .. " /" .. opt .. " /" .. pack ,
186
- opt = opt == " opt" ,
187
- _ = {
188
- installed = true ,
189
- is_symlink = dir_type == " link" ,
190
- is_local = dir_type == " link" ,
191
- },
192
- })
193
- end
178
+ for pack , dir_type in pairs (installed ) do
179
+ table.insert (Config .to_clean , {
180
+ name = pack ,
181
+ dir = Config .options .packpath .. " /opt/" .. pack ,
182
+ _ = {
183
+ installed = true ,
184
+ is_symlink = dir_type == " link" ,
185
+ is_local = dir_type == " link" ,
186
+ },
187
+ })
194
188
end
195
189
end
196
190
@@ -214,7 +208,7 @@ function M.load()
214
208
Util .track (" spec" )
215
209
local spec = M .spec ()
216
210
if not spec .plugins [" lazy.nvim" ] then
217
- spec :add ({ " folke/lazy.nvim" , opt = false })
211
+ spec :add ({ " folke/lazy.nvim" , lazy = false })
218
212
end
219
213
Config .plugins = spec .plugins
220
214
Util .track ()
0 commit comments