23 lines
407 B
Nix
23 lines
407 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
programs.zsh = {
|
||
|
enable = true;
|
||
|
oh-my-zsh = {
|
||
|
enable = true;
|
||
|
plugins = [ "git" ];
|
||
|
};
|
||
|
zplug = {
|
||
|
enable = true;
|
||
|
plugins = [
|
||
|
{ name = "zsh-users/zsh-autosuggestions"; }
|
||
|
{ name = "zsh-users/zsh-syntax-highlighting"; }
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
programs.starship = {
|
||
|
enable = true;
|
||
|
enableZshIntegration = true;
|
||
|
};
|
||
|
}
|