From 21b0cb5bdb990ce5c012e8ae88d529f90d99a46b Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sat, 14 Jan 2023 01:23:26 +0000 Subject: [PATCH] zsh: shell integration for kitty I'm not sure this was necessary, but it's there now. --- zsh/lib/kitty.zsh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 zsh/lib/kitty.zsh diff --git a/zsh/lib/kitty.zsh b/zsh/lib/kitty.zsh new file mode 100644 index 0000000..e606c01 --- /dev/null +++ b/zsh/lib/kitty.zsh @@ -0,0 +1,6 @@ +if test -n "$KITTY_INSTALLATION_DIR"; then + export KITTY_SHELL_INTEGRATION="enabled" + autoload -Uz -- "$KITTY_INSTALLATION_DIR"/shell-integration/zsh/kitty-integration + kitty-integration + unfunction kitty-integration +fi -- 2.48.1