diff --git a/lua/plugins/wezterm.lua b/lua/plugins/wezterm.lua new file mode 100644 index 0000000..7f50be2 --- /dev/null +++ b/lua/plugins/wezterm.lua @@ -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, +}