From d76111cd0de07c821844be4583ffb81eb2d59bf7 Mon Sep 17 00:00:00 2001 From: Rosa Date: Sat, 20 Dec 2025 15:31:54 -0500 Subject: foot, editor --- user/zsh.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 user/zsh.nix (limited to 'user/zsh.nix') 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; + }; +} -- cgit v1.3.1