Files
nixos-config/home/shell/zsh/default.nix
2023-11-26 12:11:40 -04:00

29 lines
458 B
Nix

{ config
, lib
, ...
}:
{
programs.zsh = lib.mkForce {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "grc" "git" ];
};
zplug = {
enable = true;
plugins = [
{ name = "zsh-users/zsh-autosuggestions"; }
{
name = "zsh-users/zsh-syntax-highlighting";
}
{ name = "marlonrichert/zsh-autocomplete"; }
{ name = "hlissner/zsh-autopair"; }
];
};
};
}