🐇 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
@@ -2,10 +2,10 @@
-- --------------------------------- WezTerm -----------------------------------
-- -----------------------------------------------------------------------------
return {
"willothy/wezterm.nvim",
config = true,
cond = function() -- Using WezTerm
"willothy/wezterm.nvim",
config = true,
cond = function() -- Using WezTerm
local term = os.getenv("TERM_PROGRAM")
return term and string.find(term, "WezTerm")
end,
end,
}