nixos-config/home/shellcommon.nix
Sridhar Ratnakumar 5e2b93a7c9 path fixes
2022-04-08 22:22:14 -04:00

12 lines
295 B
Nix

{ pkgs, ... }:
{
shellAliases = {
g = "${pkgs.git}/bin/git";
t = "${pkgs.tig}/bin/tig";
l = "${pkgs.exa}/bin/exa";
ll = "${pkgs.exa}/bin/exa -l";
ls = "l";
pux = "sh -c \"tmux -S $(pwd).tmux attach\"";
pux-iterm = "sh -c \"tmux -S $(pwd).tmux -CC attach\"";
};
}