Files
develnix/programs/zsh.nix
2018-11-20 23:23:23 +01:00

11 lines
193 B
Nix

{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
autosuggestions.enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
}