26 lines
529 B
Nix
26 lines
529 B
Nix
{...}: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
zplug = {
|
|
enable = true;
|
|
plugins = [
|
|
{
|
|
name = "mafredri/zsh-async";
|
|
tags = [from:github defer:0];
|
|
}
|
|
{name = "zsh-users/zsh-autosuggestions";}
|
|
{
|
|
name = "sindresorhus/pure";
|
|
tags = [use:pure.zsh from:github as:theme];
|
|
}
|
|
];
|
|
};
|
|
syntaxHighlighting.enable = true;
|
|
initContent = ''
|
|
# Run fastfetch on startup
|
|
fastfetch
|
|
'';
|
|
};
|
|
}
|