nixos-config/home/shellcommon.nix
Sridhar Ratnakumar bda157747c e alias
2022-04-10 16:33:51 -04:00

13 lines
320 B
Nix

{ pkgs, ... }:
{
shellAliases = {
e = "nvim";
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\"";
};
}