- Made tweaks to plugin loading triggers that decreased loading time by nearly half! - On my system: - Previously: ~89ms - Now: ~52ms
12 lines
434 B
Lua
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,
|
|
}
|