nixos-config/home/shellcommon.nix

13 lines
300 B
Nix

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