diff --git a/nixos/modules/users/zsh.nix b/nixos/modules/users/zsh.nix index 92e574b..1fc60b2 100644 --- a/nixos/modules/users/zsh.nix +++ b/nixos/modules/users/zsh.nix @@ -22,11 +22,19 @@ "HIST_IGNORE_SPACE" "EXTENDED_GLOB" "CORRECT" + # "PROMPT_SUBST" ]; + shellInit = '' eval "$(fzf --zsh)" alias ..="cd .." alias ...="cd ../.." + bindkey -e + # export %# ' + ''; + + promptInit = '' + PS1='%{%F{green}%}%n@%m %{%F{blue}%}%~%{%f%}❯%{%F{white}%} %# ' ''; };