diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index 961705d..3c21058 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -28,5 +28,22 @@ # Configure starship programs.starship = { enable = true; + enableZshIntegration = true; + settings = { + aws.style = "bold #D22B2B"; + cmd_duration.style = "bold #98C379"; + directory.style = "bold #D199A66"; + hostname.style = "bold #61AFEF"; + git_branch.style = "bold #C678DD"; + git_status.style = "bold #61AFEF"; + username = { + format = "[$user]($styule) on "; + style_user = "bold #56B6C2"; + }; + character = { + success_symbol = "[λ](bold #ABB2BF)"; + error_symbol = "[λ](bold #D22B2B)"; + }; + }; }; } \ No newline at end of file