dotfiles-nix/modules/programs/zsh/default.nix

17 lines
251 B
Nix
Raw Normal View History

2025-01-21 02:43:35 +00:00
{ ... }:
{
config = {
programs.zsh = {
enable = true;
enableCompletion = true;
enableGlobalCompInit = false;
2025-01-22 15:07:28 +00:00
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
histSize = 10000;
2025-01-21 02:43:35 +00:00
};
};
}