diff options
Diffstat (limited to 'user/zsh.nix')
| -rw-r--r-- | user/zsh.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/user/zsh.nix b/user/zsh.nix new file mode 100644 index 0000000..730f0e7 --- /dev/null +++ b/user/zsh.nix @@ -0,0 +1,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; + }; +} |
