blob: edc39d0e7017a03be2b661d871b92c8c0f05ee9f (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, pkgs, ... }:
{ programs.zsh = {
enable = true;
promptInit = "";
} // (if pkgs.stdenv.isDarwin then {} else {
enableGlobalCompInit = false;
});
programs.bash.enableCompletion = true;
}
|