💤 Better Lazy Management

- Allow more plugins to lazy-load
This commit is contained in:
2024-07-14 11:10:24 -04:00
parent bf1be126fa
commit 60b35456f7
3 changed files with 13 additions and 2 deletions
+12 -1
View File
@@ -28,7 +28,7 @@ return {
},
{
"mikesmithgh/ugbi",
lazy = false,
event = "VeryLazy",
},
{
"chrisgrieser/nvim-rip-substitute",
@@ -36,6 +36,7 @@ return {
},
{
"Rawnly/gist.nvim",
event = "VeryLazy",
cmd = { "GistCreate", "GistCreateFromFile", "GistsList" },
config = true,
},
@@ -48,12 +49,14 @@ return {
},
{
"ziontee113/icon-picker.nvim",
event = "VeryLazy",
config = function()
require("icon-picker").setup({ disable_legacy_commands = true })
end,
},
{
"kdheepak/lazygit.nvim",
event = "VeryLazy",
cmd = {
"LazyGit",
"LazyGitConfig",
@@ -67,6 +70,7 @@ return {
},
{
"mistricky/codesnap.nvim",
event = "VeryLazy",
build = "make",
opts = {
save_path = "~/Pictures/Screenshots/",
@@ -78,4 +82,11 @@ return {
code_font_size = 12,
},
},
{
"mistweaverco/kulala.nvim",
lazy = true,
config = function()
require("kulala").setup()
end,
},
}