From 40d9b962fd2644212d3843a95fad7e1707d14eea Mon Sep 17 00:00:00 2001 From: Matthew Stobbs Date: Wed, 19 Aug 2026 09:21:33 -0500 Subject: [PATCH] configure zsh --- demilich/home.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/demilich/home.nix b/demilich/home.nix index b9f4921..17e4676 100644 --- a/demilich/home.nix +++ b/demilich/home.nix @@ -339,5 +339,26 @@ enable = true; enableZshIntegration = true; }; + zsh = { + enable = true; + enableCompletion = true; + oh-my-zsh = { + enable = true; + plugins = [ + "aliases" + "direnv" + "eza" + "fzf" + "golang" + "podman" + "starship" + "zoxide" + ]; + theme = "robbyrussell"; + extraConfig = '' + zstyle ':omz:update' mode reminder + ''; + }; + }; }; }