nixos-config/home/shellcommon.nix
Sridhar Ratnakumar 52f547ddf4 tig--
2022-04-10 16:33:33 -04:00

12 lines
304 B
Nix

{ pkgs, ... }:
{
shellAliases = {
g = "${pkgs.git}/bin/git";
lg = "${pkgs.lazygit}/bin/lazygit";
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\"";
};
}