From 70c013ce6487516ae9803d917ecf702e22ae4b01 Mon Sep 17 00:00:00 2001 From: stubbfel Date: Wed, 17 Jan 2018 23:15:42 +0100 Subject: [PATCH] Update zsh.nix --- programs/zsh.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/programs/zsh.nix b/programs/zsh.nix index 8361433..d146c46 100644 --- a/programs/zsh.nix +++ b/programs/zsh.nix @@ -11,9 +11,10 @@ enableAutosuggestions = true; enableCompletion = true; syntaxHighlighting.enable = true; + interactiveShellInit = '' + source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh + ''; }; - interactiveShellInit = '' - source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh - ''; + }