22 lines
333 B
Nix
22 lines
333 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableSyntaxHighlighting = true;
|
|
history.size = 10000;
|
|
|
|
shellAliases = {
|
|
ls = "exa --group-directories-first --git";
|
|
};
|
|
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [
|
|
"direnv"
|
|
"vi-mode"
|
|
];
|
|
};
|
|
};
|
|
}
|