nixos-config/home/shellcommon.nix
Sridhar Ratnakumar a00104b627 exa: add lt alias
2022-04-15 22:45:25 -04:00

14 lines
306 B
Nix

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