about summary refs log tree commit diff
path: root/programs/aliases.nix
blob: 28e3815863f157a990df7b8563a3c9be22b2e044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  vim = "nvim";
  cfd = "cd ~/.config/nixpkgs";
  ch = "v ~/.config/nixpkgs/home.nix";
  github = "gh repo view --web";

  cp = "cp -iv";
  mv = "mv -iv";
  rm = "rm -iv";
  mkd = "mkdir -pv";
  yt = "youtube-dl --add-metadata -i";
  yta = "yt -x -f bestaudio/best";
  ffmpeg = "ffmpeg -hide_banner";

  # Git aliases
  gs = "git status";
  ga = "git add";
  gc = "git commit";
  gl = "git lg";
  gd = "git diff";

  calibre = "calibre --with-library=~/books";
}