alt getting there

This commit is contained in:
Till 2023-12-15 19:57:18 +01:00
parent 08044381f6
commit f936753dae
3 changed files with 85 additions and 0 deletions

15
alt/alias.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
home.shellAliases = {
htop = "btm -b";
ymd = "date +'%Y-%m-%d'";
cb = "cd $(sed 's|^file://||' /home/till/.config/gtk-3.0/bookmarks | fzf --height 10% --reverse)";
v = "nvim";
r = "R --no-save --no-restore";
R = "R --no-save --no-restore";
cdg = "cd \$(git rev-parse --show-toplevel)";
map = "telnet mapscii.me";
weather = "curl wttr.in/frankfurt";
};
}