🖥️ Add WezTerm Support

- Only loaded when WezTerm is used
This commit is contained in:
2024-07-12 21:38:04 -04:00
parent a2492d0eed
commit 350db0c342
+11
View File
@@ -0,0 +1,11 @@
-- -----------------------------------------------------------------------------
-- --------------------------------- 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,
}