15 lines
271 B
Nix
15 lines
271 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.zsh = {
|
|
ohMyZsh = {
|
|
enable = true;
|
|
plugins = ["git" "git-extras" "git-flow"];
|
|
};
|
|
enable = true;
|
|
enableAutosuggestions = true;
|
|
enableCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
};
|
|
}
|