From: Samir Benmendil Date: Sat, 14 Jan 2023 01:23:26 +0000 (+0000) Subject: zsh: shell integration for kitty X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/21b0cb5bdb990ce5c012e8ae88d529f90d99a46b?ds=inline zsh: shell integration for kitty I'm not sure this was necessary, but it's there now. --- 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