Files
neovim-config/lua/ui/wezterm.lua
T
rootiest 196d3ee59e 📦 Projects and plugins
- Adds Projects option
- Reorganize plugins
2024-07-13 11:52:54 -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,
}