2022-06-26 12:42:49 +00:00
|
|
|
{ config, lib, pkgs, user, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
2022-07-12 19:02:29 +00:00
|
|
|
enableAutosuggestions = true;
|
|
|
|
enableCompletion = true;
|
2022-06-26 12:42:49 +00:00
|
|
|
history.size = 10000;
|
|
|
|
|
2022-07-13 06:00:58 +00:00
|
|
|
sessionVariables = {
|
|
|
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=10";
|
|
|
|
};
|
|
|
|
|
2022-07-07 15:22:12 +00:00
|
|
|
shellAliases = {
|
|
|
|
ls = "exa --group-directories-first --git";
|
|
|
|
};
|
2022-06-26 12:42:49 +00:00
|
|
|
};
|
|
|
|
}
|