Skip to content

Commit 07b4677

Browse files
committed
feat(loader): automatically lazy-load colorschemes
1 parent 210d170 commit 07b4677

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- 🔎 Automatically check for updates
2323
- 📋 Commit, branch, tag, version, and full [Semver](https://devhints.io/semver) support
2424
- 📈 Statusline component to see the number of pending updates
25+
- 🎨 Automatically lazy-loads colorschemes
2526

2627
## ⚡️ Requirements
2728

@@ -112,6 +113,9 @@ module of plugin `A`, then plugin `A` will be loaded on demand as expected.
112113
If you don't want this behavior for a certain plugin, you can specify that with `module=false`.
113114
You can then manually load the plugin with `:Lazy load foobar.nvim`.
114115

116+
Colorscheme plugins can be configured with `lazy=true`. The plugin will automagically load
117+
when doing `colorscheme foobar`.
118+
115119
You can configure **lazy.nvim** to lazy-load all plugins by default with `config.defaults.lazy = true`.
116120

117121
Additionally, you can also lazy-load on **events**, **commands**,

lua/lazy/core/loader.lua

+22
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ function M.setup()
3737
M.disabled_rtp_plugins[file] = true
3838
end
3939

40+
vim.api.nvim_create_autocmd("ColorSchemePre", {
41+
callback = function(event)
42+
M.colorscheme(event.match)
43+
end,
44+
})
45+
4046
-- autoload opt plugins
4147
table.insert(package.loaders, M.autoload)
4248
end
@@ -191,6 +197,22 @@ function M.source(path)
191197
Util.track()
192198
end
193199

200+
function M.colorscheme(name)
201+
if vim.tbl_contains(vim.fn.getcompletion("", "color"), name) then
202+
return
203+
end
204+
for _, plugin in pairs(Config.plugins) do
205+
if not plugin._.loaded then
206+
for _, ext in ipairs({ "lua", "vim" }) do
207+
local path = plugin.dir .. "/colors/" .. name .. "." .. ext
208+
if vim.loop.fs_stat(path) then
209+
return M.load(plugin, { colorscheme = name })
210+
end
211+
end
212+
end
213+
end
214+
end
215+
194216
-- This loader is added as the very last one.
195217
-- This only hits when the modname is not cached and
196218
-- even then only once per plugin. So pretty much never.

0 commit comments

Comments
 (0)