aboutsummaryrefslogtreecommitdiff
path: root/user/home/zsh.nix
blob: c19b14783cb0436bc7bf21c8a2b4187e8a2908a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, ... }:
{
  programs.direnv.enable = true;
  programs.zsh = {
    enable = true;
    autocd = true;
    autosuggestion.enable = true;
    defaultKeymap = "viins";
    history.ignoreAllDups = true;
    initContent = ''
      PS1="%F{1}%n %B%5~%b %F{8}%# %f"
    '';

    syntaxHighlighting.enable = true;
  };
}