From 08587334dd99b9b9a3fc64302041524fe0f32bbd Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Fri, 17 May 2024 15:05:44 +0200 Subject: [PATCH] Changed zsh theme from robbyrussell to agnoster --- pkgs/zsh.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/zsh.nix b/pkgs/zsh.nix index 4d4e186..ace5982 100644 --- a/pkgs/zsh.nix +++ b/pkgs/zsh.nix @@ -9,9 +9,6 @@ programs.zsh = { enable = true; enableCompletion = true; - autosuggestions.enable = true; - - history.size = 10000; shellAliases = { update = "sudo nixos-rebuild switch --flake"; @@ -22,7 +19,7 @@ ohMyZsh = { enable = true; plugins = ["git"]; - theme = "robbyrussell"; + theme = "agnoster"; }; shellInit = "eval \"$(zoxide init zsh --cmd cd)\"";