Files
neovim-config/lua/ui/wezterm.lua
T
rootiest c5610a92fe 🐇 Lazy Efficiency 💤
- Made tweaks to plugin loading triggers that decreased loading time by
nearly half!
- On my system:
  - Previously: ~89ms
  - Now:        ~52ms
2024-07-17 06:34:33 -04:00

12 lines
434 B
Lua

-- -----------------------------------------------------------------------------
-- --------------------------------- WezTerm -----------------------------------
-- -----------------------------------------------------------------------------
return {
"willothy/wezterm.nvim",
config = true,
cond = function() -- Using WezTerm
local term = os.getenv("TERM_PROGRAM")
return term and string.find(term, "WezTerm")
end,
}