diff --git a/kitty/shell_integration.py b/kitty/shell_integration.py index 4d40247ed..2ea4fa778 100644 --- a/kitty/shell_integration.py +++ b/kitty/shell_integration.py @@ -53,7 +53,7 @@ def setup_integration(shell_name: str, rc_path: str, template: str = posix_templ def setup_zsh_integration() -> None: base = os.environ.get('ZDOTDIR', os.path.expanduser('~')) rc = os.path.join(base, '.zshrc') - if os.path.exists(rc): + if os.path.exists(rc): # dont prevent zsh-newuser-install from running setup_integration('zsh', rc)