30 lines
480 B
Nix
30 lines
480 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
oh-my-zsh
|
|
];
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
antidote = {
|
|
enable = true;
|
|
plugins = {};
|
|
useFriendlyNames = true;
|
|
};
|
|
autosuggestions = {
|
|
enable = true;
|
|
};
|
|
shellAliases = {
|
|
".." = "cd ..";
|
|
"..." = "cd ../..";
|
|
"...." = "cd ../../..";
|
|
"pls" = "pls -d typ -d perm -d user -d group -d size -d mtime -d git";
|
|
"z" = "zoxide";
|
|
};
|
|
};
|
|
|
|
}
|
|
|