15 lines
262 B
Nix
15 lines
262 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
programs.zsh = {
|
||
|
|
enable = true;
|
||
|
|
ohMyZsh = {
|
||
|
|
enable = true;
|
||
|
|
plugins = [ "git" "man" "history-substring-search" ];
|
||
|
|
theme = "robbyrussell";
|
||
|
|
};
|
||
|
|
syntaxHighlighting.enable = true;
|
||
|
|
autosuggestions.enable = true;
|
||
|
|
};
|
||
|
|
}
|