From 91175a2b414ed9d4ec7466ce8210829a7d5ebee1 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Tue, 5 Dec 2023 21:31:39 +1100 Subject: [PATCH] Set up Kitty shell integration manually --- dot-config/zsh/interactive/kitty.zsh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 dot-config/zsh/interactive/kitty.zsh diff --git a/dot-config/zsh/interactive/kitty.zsh b/dot-config/zsh/interactive/kitty.zsh new file mode 100644 index 0000000..6d08c9c --- /dev/null +++ b/dot-config/zsh/interactive/kitty.zsh @@ -0,0 +1,6 @@ +if [[ -n $KITTY_INSTALLATION_DIR ]]; then + export KITTY_SHELL_INTEGRATION='no-title' + autoload -Uz -- $KITTY_INSTALLATION_DIR/shell-integration/zsh/kitty-integration + kitty-integration + unfunction kitty-integration +fi