2022-06-26 12:42:49 +00:00
|
|
|
{ config, lib, pkgs, user, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
enableSyntaxHighlighting = true;
|
|
|
|
history.size = 10000;
|
|
|
|
|
2022-07-07 15:22:12 +00:00
|
|
|
shellAliases = {
|
|
|
|
ls = "exa --group-directories-first --git";
|
|
|
|
};
|
|
|
|
|
2022-06-26 12:42:49 +00:00
|
|
|
oh-my-zsh = {
|
|
|
|
enable = true;
|
2022-06-29 12:50:16 +00:00
|
|
|
plugins = [
|
|
|
|
"vi-mode"
|
|
|
|
];
|
2022-06-26 12:42:49 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|