aboutsummaryrefslogtreecommitdiff
path: root/zsh/behavior.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/behavior.zsh')
-rw-r--r--zsh/behavior.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/behavior.zsh b/zsh/behavior.zsh
index f2be1f5..84e5bfc 100644
--- a/zsh/behavior.zsh
+++ b/zsh/behavior.zsh
@@ -22,7 +22,7 @@ setopt hist_verify # load hist into command buffer rather than exec immediately
# set term title appropriately based on term type
# user@host:current_dir (current_command)
case "$TERM" in
- xterm*|rxvt*|screen*)
+ xterm*|rxvt*|screen*|alacritty*)
term_preexec () {
printf '\e]0;%s (%s)\a' ${(%):-'%n@%m:%~'} "$1"
}