diff --git a/users/profiles/shells/zsh.nix b/users/profiles/shells/zsh.nix index 540de8c..22f328a 100644 --- a/users/profiles/shells/zsh.nix +++ b/users/profiles/shells/zsh.nix @@ -19,6 +19,11 @@ initExtra = '' ${pkgs.kitty}/bin/kitty + complete setup zsh | source /dev/stdin ${pkgs.any-nix-shell}/bin/any-nix-shell zsh --info-right | source /dev/stdin + if [[ -e ~/TODO.txt && ! -v __TODO_PRINTED ]] then + export __TODO_PRINTED=1 + echo TODO: + \cat ~/TODO.txt + fi ''; dotDir = ".config/zsh";