diff options
author | Alan Pearce | 2023-05-12 09:18:57 +0200 |
---|---|---|
committer | Alan Pearce | 2023-05-12 09:18:57 +0200 |
commit | ed7b5467946283acc91543d9ffda4cd120320a54 (patch) | |
tree | 23df8d7c75724ae747f067cd1bb4f51cad6a0cf3 /user/settings | |
parent | 50c9f04d5b9b53667dc63ed40a6dafbc13ce1dc6 (diff) | |
download | nixfiles-ed7b5467946283acc91543d9ffda4cd120320a54.tar.lz nixfiles-ed7b5467946283acc91543d9ffda4cd120320a54.tar.zst nixfiles-ed7b5467946283acc91543d9ffda4cd120320a54.zip |
zsh/darwin: integrate with kitty
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/zsh.nix | 4 |
1 files changed, 2 insertions, 2 deletions
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}'"; } |