💤 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
-1
View File
@@ -24,7 +24,6 @@ return {
}, },
{ {
"shellRaining/hlchunk.nvim", "shellRaining/hlchunk.nvim",
lazy = false,
config = function() config = function()
require("hlchunk").setup({ require("hlchunk").setup({
chunk = { chunk = {
+1
View File
@@ -61,6 +61,7 @@ return {
}, },
{ {
"Bekaboo/deadcolumn.nvim", "Bekaboo/deadcolumn.nvim",
event = "VeryLazy",
config = function() config = function()
require("deadcolumn").setup({ require("deadcolumn").setup({
scope = "line", ---@type string|fun(): integer scope = "line", ---@type string|fun(): integer
+12 -1
View File
@@ -28,7 +28,7 @@ return {
}, },
{ {
"mikesmithgh/ugbi", "mikesmithgh/ugbi",
lazy = false, event = "VeryLazy",
}, },
{ {
"chrisgrieser/nvim-rip-substitute", "chrisgrieser/nvim-rip-substitute",
@@ -36,6 +36,7 @@ return {
}, },
{ {
"Rawnly/gist.nvim", "Rawnly/gist.nvim",
event = "VeryLazy",
cmd = { "GistCreate", "GistCreateFromFile", "GistsList" }, cmd = { "GistCreate", "GistCreateFromFile", "GistsList" },
config = true, config = true,
}, },
@@ -48,12 +49,14 @@ return {
}, },
{ {
"ziontee113/icon-picker.nvim", "ziontee113/icon-picker.nvim",
event = "VeryLazy",
config = function() config = function()
require("icon-picker").setup({ disable_legacy_commands = true }) require("icon-picker").setup({ disable_legacy_commands = true })
end, end,
}, },
{ {
"kdheepak/lazygit.nvim", "kdheepak/lazygit.nvim",
event = "VeryLazy",
cmd = { cmd = {
"LazyGit", "LazyGit",
"LazyGitConfig", "LazyGitConfig",
@@ -67,6 +70,7 @@ return {
}, },
{ {
"mistricky/codesnap.nvim", "mistricky/codesnap.nvim",
event = "VeryLazy",
build = "make", build = "make",
opts = { opts = {
save_path = "~/Pictures/Screenshots/", save_path = "~/Pictures/Screenshots/",
@@ -78,4 +82,11 @@ return {
code_font_size = 12, code_font_size = 12,
}, },
}, },
{
"mistweaverco/kulala.nvim",
lazy = true,
config = function()
require("kulala").setup()
end,
},
} }