From ed7b5467946283acc91543d9ffda4cd120320a54 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 12 May 2023 09:18:57 +0200 Subject: zsh/darwin: integrate with kitty --- user/settings/zsh.nix | 4 ++-- user/zsh/zshrc.darwin | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'user') diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 0ff7f519..bb7b8974 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -8,7 +8,7 @@ let lsOptions = if stdenv.isDarwin then "-p" - else "-v --group-directories-first"; + else "-v --group-directories-first --hyperlink=auto"; lsIsoDate = if stdenv.isDarwin then "" @@ -224,5 +224,5 @@ in ); }; - home.file."${zshrc}".onChange = "${pkgs.zsh}/bin/zsh -i -c 'autoload -Uz compinit && compinit && zcompile ${zshrc}'"; + home.file."${zshrc}".onChange = "${pkgs.zsh}/bin/zsh -i -c 'autoload -Uz compinit && compinit && zcompile $HOME/${zshrc}'"; } diff --git a/user/zsh/zshrc.darwin b/user/zsh/zshrc.darwin index 58093e09..06e7bbc9 100644 --- a/user/zsh/zshrc.darwin +++ b/user/zsh/zshrc.darwin @@ -32,3 +32,11 @@ finder() { open -a Finder "${1:-.}" } compdef '_path_files -/' finder + +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 + alias ssh="kitten ssh" +fi -- cgit 1.4.1