✨ feat(nvim): added project-specific plugin specs extra
This commit is contained in:
parent
204dbd672a
commit
a0a61e64aa
3 changed files with 41 additions and 1 deletions
|
@ -12,6 +12,7 @@ require("lazy").setup({
|
||||||
-- add LazyVim and import its plugins
|
-- add LazyVim and import its plugins
|
||||||
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
||||||
{ import = "plugins" },
|
{ import = "plugins" },
|
||||||
|
{ import = "plugins.extras.util.lazyrc" },
|
||||||
},
|
},
|
||||||
defaults = {
|
defaults = {
|
||||||
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
||||||
|
|
39
.config/nvim/lua/plugins/extras/util/lazyrc.lua
Normal file
39
.config/nvim/lua/plugins/extras/util/lazyrc.lua
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
--[[
|
||||||
|
Enable project-specific plugin specs.
|
||||||
|
|
||||||
|
File .lazy.lua:
|
||||||
|
is read when present in the current working directory
|
||||||
|
should return a plugin spec
|
||||||
|
has to be manually trusted for each instance of the file
|
||||||
|
|
||||||
|
This extra should be the last plugin spec added to lazy.nvim
|
||||||
|
|
||||||
|
See:
|
||||||
|
:h 'exrc'
|
||||||
|
:h :trust
|
||||||
|
--]]
|
||||||
|
local filepath = vim.fn.fnamemodify(".lazy.lua", ":p")
|
||||||
|
local file = vim.secure.read(filepath)
|
||||||
|
if not file then
|
||||||
|
return {}
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd("User", {
|
||||||
|
pattern = "VeryLazy",
|
||||||
|
once = true,
|
||||||
|
callback = function()
|
||||||
|
local Config = require("lazy.core.config")
|
||||||
|
local Util = require("lazyvim.util")
|
||||||
|
local lazyrc_idx = Util.plugin.extra_idx("lazyrc")
|
||||||
|
|
||||||
|
if lazyrc_idx and lazyrc_idx ~= #Config.spec.modules then
|
||||||
|
Util.warn({
|
||||||
|
"The `lazyrc` extra must be the last plugin spec added to **lazy.nvim**. ",
|
||||||
|
"",
|
||||||
|
"Add `{ import = 'lazyvim.plugins.extras.lazyrc' }` to file `config.lazy`. ",
|
||||||
|
"Do not use the `LazyExtras` command. ",
|
||||||
|
}, { title = "LazyVim", once = true })
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
return loadstring(file)()
|
2
.github/README.md
vendored
2
.github/README.md
vendored
|
@ -50,7 +50,7 @@ I've been working on this for a long time so I hope you like it!
|
||||||
|
|
||||||
- :scroll: Scratchpads
|
- :scroll: Scratchpads
|
||||||
- :bell: Notification Center
|
- :bell: Notification Center
|
||||||
- :zzz: Neovim powered by LazyVim with custom extras added
|
- :zzz: Neovim powered by LazyVim with custom extras added (More than 200!)
|
||||||
- :dark_sunglasses: Dark Mode for the whole system
|
- :dark_sunglasses: Dark Mode for the whole system
|
||||||
- :framed_picture: Various Wallpapers
|
- :framed_picture: Various Wallpapers
|
||||||
- :nerd_face: Nerd Fonts for the Shell Prompt
|
- :nerd_face: Nerd Fonts for the Shell Prompt
|
||||||
|
|
Loading…
Add table
Reference in a new issue