nixos-config/home/shellcommon.nix
Sridhar Ratnakumar d0c11b99e2 Add todo.txt (t)
2022-07-31 11:08:33 -04:00

18 lines
388 B
Nix

{ pkgs, ... }:
{
shellAliases = {
e = "nvim";
ee = "nvim \"$(fzf)\"";
g = "${pkgs.git}/bin/git";
lg = "lazygit";
ls = "${pkgs.exa}/bin/exa";
l = "ls";
ll = "ls -l";
lt = "ls --tree";
# Project tmux.
pux = "sh -c \"tmux -S $(pwd).tmux attach\"";
# TODO: Gotta specify ~/.todo/config in Nix
t = "${pkgs.todo-txt-cli}/bin/todo.sh";
};
}