Files
neovim-config/lua/plugins/wezterm.lua
T
rootiest 350db0c342 🖥️ Add WezTerm Support
- Only loaded when WezTerm is used
2024-07-12 21:38:04 -04:00

12 lines
430 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,
}