16 lines
251 B
Nix
16 lines
251 B
Nix
{ ... }:
|
|
|
|
{
|
|
config = {
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
enableGlobalCompInit = false;
|
|
autosuggestions.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
histSize = 10000;
|
|
};
|
|
|
|
};
|
|
}
|