22 lines
418 B
Nix
22 lines
418 B
Nix
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
fzf
|
||
|
fzy
|
||
|
zoxide
|
||
|
curl
|
||
|
];
|
||
|
|
||
|
programs.zsh = {
|
||
|
enable = true;
|
||
|
enableCompletion = true;
|
||
|
syntaxHighlighting.enable = true;
|
||
|
autosuggestion.enable = true;
|
||
|
|
||
|
shellAliases = {
|
||
|
ll = "ls -lhat";
|
||
|
};
|
||
|
history.size = 10000;
|
||
|
history.path = "${config.xdg.dataHome}/zsh/history";
|
||
|
};
|
||
|
}
|