Files
stubbfelnix/programs/zsh.nix
2018-01-17 23:14:47 +01:00

20 lines
377 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zsh-git-prompt
];
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
interactiveShellInit = ''
source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh
'';
}