🐇 Lazy Efficiency 💤

- Made tweaks to plugin loading triggers that decreased loading time by
nearly half!
- On my system:
  - Previously: ~89ms
  - Now:        ~52ms
This commit is contained in:
2024-07-17 06:34:33 -04:00
parent dac0a8b790
commit c5610a92fe
5 changed files with 21 additions and 14 deletions
+4 -4
View File
@@ -47,9 +47,9 @@ return {
vim.g.unception_block_while_host_edits = true
end,
},
{
{ -- 🍎 Icon Picker
"ziontee113/icon-picker.nvim",
event = "VeryLazy",
event = "InsertEnter",
config = function()
require("icon-picker").setup({ disable_legacy_commands = true })
end,
@@ -70,7 +70,7 @@ return {
},
{
"mistricky/codesnap.nvim",
event = "VeryLazy",
event = "InsertEnter",
build = "make",
opts = {
save_path = "~/Pictures/Screenshots/",
@@ -84,7 +84,7 @@ return {
},
{
"mistweaverco/kulala.nvim",
lazy = true,
event = "InsertEnter",
config = function()
require("kulala").setup()
end,