diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua index 13b541d..a5edf68 100644 --- a/lua/plugins/coding.lua +++ b/lua/plugins/coding.lua @@ -24,7 +24,6 @@ return { }, { "shellRaining/hlchunk.nvim", - lazy = false, config = function() require("hlchunk").setup({ chunk = { diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index b8f563b..349116c 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -61,6 +61,7 @@ return { }, { "Bekaboo/deadcolumn.nvim", + event = "VeryLazy", config = function() require("deadcolumn").setup({ scope = "line", ---@type string|fun(): integer diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index 819b444..b2d36ab 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -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, + }, }