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

    syntaxHighlighting.enable = true;
  };
}