From 17c818b7d82cfdc572b42fd96bf00690a87e7e15 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 29 Apr 2024 20:35:40 +0200 Subject: [PATCH] Remove theme and add stuff for zoxide --- home-manager/shared/shell/zsh.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home-manager/shared/shell/zsh.nix b/home-manager/shared/shell/zsh.nix index da9b4a5..c595187 100644 --- a/home-manager/shared/shell/zsh.nix +++ b/home-manager/shared/shell/zsh.nix @@ -51,7 +51,10 @@ "isodate" "z" ]; - theme = "catppuccin-macchiato"; }; + # stuff for zoxide + initExtra = '' + eval "$(zoxide init --cmd cd zsh)" + ''; }; }