feat(zsh): configure plugins

This commit is contained in:
Oliver Davies 2022-09-21 10:30:11 +01:00
parent a1bc689a01
commit 503e40b762

View file

@ -19,5 +19,19 @@
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
programs.zsh.enable = true;
programs.zsh = {
enable = true;
zplug = {
enable = true;
plugins = [
{ name = "mollifier/cd-gitroot"; }
{ name = "romkatv/powerlevel10k"; tags = [ as:theme depth:1 ]; }
{ name = "zsh-users/zsh-autosuggestions"; }
{ name = "zsh-users/zsh-completions"; }
{ name = "zsh-users/zsh-syntax-highlighting"; }
];
};
};
}