Files
setup-machines/home-manager/zsh/zsh.nix

27 lines
362 B
Nix
Raw Normal View History

2025-02-27 17:39:57 +01:00
{ pkgs, inputs, ... }:
{
programs.zsh = {
enable = true;
2025-02-27 18:42:07 +01:00
autosuggestion.enable = true;
2025-02-28 19:10:52 +01:00
enableCompletion = true;
2025-02-28 19:01:46 +01:00
history = {
append = true;
};
2025-02-28 19:10:52 +01:00
shellAliases = {
ls = "eza";
ll = "eza -lh";
lal = "eza -lah";
cd = "z";
2025-02-28 19:13:49 +01:00
grep = "rg";
2025-02-28 19:10:52 +01:00
cat = "bat";
less = "bat --pager=less";
};
2025-02-27 17:39:57 +01:00
};
}