diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 84c03e3..09fbbfa 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -6,7 +6,7 @@ ../../modules/home-manager/git.nix ../../modules/home-manager/zsh.nix ../../modules/home-manager/themes/basic-gtk.nix - ../../modules/home-manager/vscode.nix + #../../modules/home-manager/vscode.nix ]; # Allow Unfree diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index 3c21058..24fad85 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -30,19 +30,19 @@ 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"; + aws.style = "bold #FF9580"; + cmd_duration.style = "bold #FFFF80"; + directory.style = "bold #FFCA80"; + hostname.style = "bold #9580FF"; + git_branch.style = "bold #80FFEA"; + git_status.style = "bold #FF80BF"; username = { - format = "[$user]($styule) on "; - style_user = "bold #56B6C2"; + format = "[$user]($style) on "; + style_user = "bold #8AFF80"; }; character = { - success_symbol = "[λ](bold #ABB2BF)"; - error_symbol = "[λ](bold #D22B2B)"; + success_symbol = "[λ](bold #F8F8F2)"; + error_symbol = "[λ](bold #FF9580)"; }; }; };