diff --git a/users/profiles/shells/zsh.nix b/users/profiles/shells/zsh.nix index e594332..8591460 100644 --- a/users/profiles/shells/zsh.nix +++ b/users/profiles/shells/zsh.nix @@ -7,6 +7,18 @@ # enableSyntaxHighlighting = true; enableVteIntegration = true; + autosuggestions.enable = true; + + syntaxHighlighting = { + enable = true; + highlighters = [ "main" "brackets" "pattern" "cursor" ]; + patterns = { + "rm -rf *" = "fg=white,bold,bg=red"; + }; + }; + + zsh-autoenv.enable = true; + dotDir = ".config/zsh"; history.path = "$ZDOTDIR/.zsh_history";