summaryrefslogtreecommitdiffstats
path: root/zsh.nix
blob: 8559a566336da46ac6a604253c8f86fae24133e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  pkgs,
  ...
}: {
  programs.zsh = {
    enable = true;
    enableAutosuggestions = true;
    enableBashCompletion = true;
    enableCompletion = true;
    enableFastSyntaxHighlighting = true;
    enableFzfCompletion = true;
    enableFzfGit = true;
    enableFzfHistory = true;
    interactiveShellInit = ''
      eval "$(direnv hook zsh)"
    '';
  };
}