summaryrefslogtreecommitdiff
path: root/modules/programs/zsh/default.nix
blob: ac100087e4eec6b7aae4a35445590b865222b980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }:

{
  config = {

    programs.zsh = {
      enable = true;
      enableCompletion = true;
      enableGlobalCompInit = false;
      autosuggestions.enable = true;
      syntaxHighlighting.enable = true;
      histSize = 10000;
    };

  };
}