mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
fba993c589
* Set nix official formatter for the flake * format the entire project
21 lines
343 B
Nix
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" ];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|