Files
omarchy-nix/modules/home-manager/zsh.nix
T
2025-06-28 12:27:26 -05:00

23 lines
388 B
Nix

{...}: {
programs.zsh = {
enable = true;
autosuggestion.enable = true;
zplug = {
enable = true;
plugins = [
{
name = "plugins/git";
tags = [from:oh-my-zsh];
}
{
name = "fdellwing/zsh-bat";
tags = [as:command];
}
];
};
sessionVariables = {
EDITOR = "nvim";
};
};
}