summaryrefslogtreecommitdiff
path: root/custom/zsh.nix
blob: de399a115f925550af101cf26f27c5fa048cc195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

rec {
  programs.zsh.enable = true;
  programs.zsh.interactiveShellInit = ''
    setopt clobber
    setopt nobeep
  '';
  programs.zsh.promptInit = ''
    bindkey -e
  '';
}