Files
omarchy-nix/modules/home-manager/zsh.nix
T
Gaétan Lepage fba993c589 Format project with official nixfmt formatter (#21)
* Set nix official formatter for the flake

* format the entire project
2025-10-15 15:09:51 -05:00

21 lines
343 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" ];
}
];
};
};
}